what is stack , heap ,code segment,and data segment
What is an expression?
What is the difference between single charater constant and string constant?
Is there a way to jump out of a function or functions?
write a program to rearrange the array such way that all even elements should come first and next come odd
Can stdout be forced to print somewhere other than the screen?
Is c dynamically typed?
why do some people write if(0 == x) instead of if(x == 0)?
What is meant by operator precedence?
What is the general form of #line preprocessor?
Write a program to swap two numbers without using the third variable?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is an lvalue in c?
What is the explanation for the dangling pointer in c?
What is a pointer variable in c language?