iGET

C Programming - MCQ Practice Questions

C questions in placement tests and university exams are rarely about syntax alone. Most of what you will find here is output prediction, pointer arithmetic, arrays and strings, structures and unions, storage classes, recursion, and file handling. The explanations walk through memory behaviour step by step, which is usually where the confusion sits rather than in the code itself.

972 questions | 100% Free

Q.21Hard

Which of the following about variadic functions is true?

Q.22Hard

What is a callback function in C?

Q.23Hard

In C, what is the relationship between array parameters and pointers in functions?

Q.24Hard

In a recursive function implementing factorial calculation, the base case is missing. What is the most likely consequence during execution?