Is main an identifier in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How to reverse a string using a recursive function, with swapping?
what will be maximum number of comparisons when number of elements are given?
What is pointer in c?
what is the return type of printf
what is function pointer?
What is a pointer?
what is the full form of c language
What is huge pointer in c?
How many parameters should a function have?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
Explain the priority queues?