

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int n1 = 23; int n2 = n1++ + n1++ + n1++; printf("%d n", n1); } |
A. | Compilation Error |
B. | 23 |
C. | Runtime Error |
D. | 26 |
E. | None of these |
Answer» E. None of these | |