Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
No Answer is Posted For this Question
Be the First to Post Answer
How do you define a function?
what value is returned to operating system after program execution?
Explain the properties of union. What is the size of a union variable
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What is an lvalue in c?
what is the difference between i++ and ++i?
why return type of main is not necessary in linux
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
What are the different types of pointers?
How we can set and clear bit in a byte using macro function?
How can I write a function analogous to scanf?
How do you convert strings to numbers in C?