

MCQOPTIONS
Saved Bookmarks
This section includes 1 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 of the following is the correct output for the program given below?
int main () { int a = 40, b = 50, c = 10, x; x = a < b < c; printf("%d n", x); return 0; } |
A. | 0 |
B. | 1 |
C. | Error |
D. | None of the above |
Answer» C. Error | |