

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