C Programming - Data Structure Interview Questions Answer
We have started series of C programming Q&A for job interview for freshers.Computer / IT Engineering Professionals and Students ali...
We have started series of C programming Q&A for job interview for freshers.Computer / IT Engineering Professionals and Students ali...
1. What is the purpose of main() function? Answer:- main() is the user-defined function. main() is the first function in the program, wh...
Collection of most Frequently Asked Placement questions and Answers for Function and Pointer in C Programing in Practical viva in Engi...
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...