

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int num = 12 + 13 - 14 + 18 - 15 % 14; printf("%d n", num); } |
A. | Compilation Error |
B. | 28 |
C. | 12 |
D. | 13 |
E. | Runtime Error |
Answer» C. 12 | |