Does free set pointer to null?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar

4 Answers   IBM,


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};

5 Answers  


How does C++ help with the tradeoff of safety vs. usability?

1 Answers  


Explain how can I make sure that my program is the only one accessing a file?

0 Answers  






What is the difference between array and structure in c?

0 Answers  


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

0 Answers   Lovely Professional University,


input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure

4 Answers   IBM,


Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }

3 Answers   Qualcomm,


What does main () mean in c?

0 Answers  


from which concept of 'c', the static member function of 'c++' has came?

1 Answers   Bosch,


what is pointer?

13 Answers   HCL, TCS,


Categories