What happens if you free a pointer twice?


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

Post New Answer

More C Interview Questions

What is a macro, and explain how do you use it?

0 Answers  


How can I get back to the interactive keyboard if stdin is redirected?

0 Answers  


how to find the sizof of any datatype using bit manipulations

3 Answers  


Can we declare variables anywhere in c?

0 Answers  


The C language terminator is a.semicolon b.colon c.period d.exclamation mark

6 Answers   TCS,


write a c program for swapping two strings using pointer

0 Answers  


What is the difference between Printf(..) and sprint(...) ?

0 Answers   InterGraph,


How to add two numbers with using function?

2 Answers   Miracle Solutions,


What is c token?

0 Answers  


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision

9 Answers   HCL, Qualcomm,


how can write all 1to 100 prime numbers using for loop,if and break ?

2 Answers   TCS,


Categories