C Question Bank
We have started series of C programming Question bank for job interview candidates.Engineering Professionals and students alike will be b...
We have started series of C programming Question bank for job interview candidates.Engineering Professionals and students alike will be b...
1. We can insert pre written code in a C program by using #read #get #include #put Answer: Optio...
1. What is the purpose of main() function? Answer:- main() is the user-defined function. main() is the first function in the program, wh...
1.) Smallest element of array's index is called a.) lower bound b.) upper bound c.) range d.) Extraction ANSWER: a.) lower bou...
1.) Which among the following is odd one out? a.) printf b.) fprintf c.) putchar d.) scanf ANSWER: d.) scanf 2.) For a typical ...
1.) Trace the output of the code #include void foo(int*); int main() { int i = 10; foo((&i)++); } void foo(int *p) { prin...
1.) If every node u in G is adjacent to every other node v in G, A graph is said to be a.) isolated b.) complete c.) finite d.) str...
A. What are volatile variables? Where we should use? A volatile variable is one that can change unexpectedly. Consequently, the compiler ca...