

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int t = 15 + 17 * 14 - 19 * (13, 12); printf("%d", t); } |
A. | 12 |
B. | 22 |
C. | 13 |
D. | 23 |
E. | 25 |
Answer» F. | |