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

What are derived data types in c?

0 Answers  


where do we use volatile keyword?

1 Answers  


What is #include stdio h and #include conio h?

0 Answers  


struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??

9 Answers   Verifone,


What is scanf_s in c?

0 Answers  






union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }

3 Answers  


What does a function declared as pascal do differently?

0 Answers  


Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).

0 Answers  


write a c program to find the probability of random numbers between 1-1000

0 Answers   ADS,


what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }

1 Answers  


write the program for prime numbers?

73 Answers   Accenture, Aptech, Infosys, TCS,


Difference between Class and Struct.

13 Answers   Ericsson, Motorola, Wipro,


Categories