Explore topic-wise MCQs in C Programming.

This section includes 3 Mcqs, each offering curated multiple-choice questions to sharpen your C Programming knowledge and support exam preparation. Choose a topic below to get started.

1.

Which among the following has the highest precedence?

A. &
B. <<
C. sizeof()
D. &&
Answer» D. &&
2.

Which of the following is not an operator in C?

A. ,
B. sizeof()
C. ~
D. None of the mentioned
Answer» C. ~
3.

sizeof(a);

A. sizeof(*a);
B. sizeof(a[10]);
C. 10 * sizeof(a);
Answer» D.