How can I use a preprocessorif expression to ?
What is the sizeof () a pointer?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What are the different properties of variable number of arguments?
What is the difference between fread buffer() and fwrite buffer()?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
State the difference between realloc and free.
What is the difference between arrays and pointers?
What are static variables in c?
what is the function of pragma directive in c?
What is hungarian notation? Is it worthwhile?
What is the most efficient way to count the number of bits which are set in an integer?
What is #include conio h?
Why c is called object oriented language?