Difference between null pointer and dangling pointer?
Answer Posted / sourisengupta
If free() is not able to free the memory then how we are
freeing the memory????
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
In C programming, what command or code can be used to determine if a number of odd or even?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Explain how do you print an address?
Difference between strcpy() and memcpy() function?
In which language linux is written?
How can I get the current date or time of day in a c program?
What is the use of function in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is memory leak in c?
Why is c still so popular?
How can I get random integers in a certain range?
Can a void pointer point to a function?
What are all different types of pointers in c?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);