

MCQOPTIONS
Saved Bookmarks
1. |
What will happen if the following C code is executed?#include <stdio.h> int main() { int var = 15; printf("%d", var); return 0; } |
A. | 10 |
B. | 12 |
C. | 15 |
D. | Compilation Error |
E. | None of these |
Answer» D. Compilation Error | |