

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int n = 5; if (n == 5) printf("True, "); else if (n = 20) printf("False, "); printf("%d n", n); } |
A. | False, 20 |
B. | 20, False |
C. | 5, True |
D. | True, 5 |
E. | None of these |
Answer» E. None of these | |