Explain how does free() know explain how much memory to release?
No Answer is Posted For this Question
Be the First to Post Answer
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
What is the difference b/w main() in C language and main() in C++.
How a string is stored in c?
WHAT IS INT?
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
Why c is known as a mother language?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is structure and union in c?
Explain the difference between strcpy() and memcpy() function?
What do you know about the use of bit field?
Write a C program in Fibonacci series.