1.

What will be the output of the following C code?#include <stdio.h> void main() { int t2 = 8; int t3 = 9; int t1 = ++t2 + t3--; printf("%d", t1); }

A. 8
B. Compilation Error
C. 9
D. 18
E. Runtime Error
Answer» E. Runtime Error


Discussion

No Comment Found

Related MCQs