What happens if you free a pointer twice?
What is a macro, and explain how do you use it?
How can I get back to the interactive keyboard if stdin is redirected?
how to find the sizof of any datatype using bit manipulations
Can we declare variables anywhere in c?
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
write a c program for swapping two strings using pointer
What is the difference between Printf(..) and sprint(...) ?
How to add two numbers with using function?
What is c token?
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); }
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
how can write all 1to 100 prime numbers using for loop,if and break ?