

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int p = 3 * 5 + 3 - 4; printf("%d", p); } |
A. | Compilation Error |
B. | Garbage value |
C. | Runtime Error |
D. | 14 |
E. | None of these |
Answer» E. None of these | |