How does free() know explain how much memory to release?
No Answer is Posted For this Question
Be the First to Post Answer
Can a file other than a .h file be included with #include?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
How can I make sure that my program is the only one accessing a file?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
Which built-in library function can be used to match a patter from the string?
Is there a built-in function in C that can be used for sorting data?
What are pointers really good for, anyway?
write a programme to convert temperature from farenheit to celcius?
What is bash c?
Explain how can I write functions that take a variable number of arguments?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed