1.

void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);}37.What is the output of this program?

A. 13
B. 14
C. -14
D. Compilation Error
Answer» C. -14


Discussion

No Comment Found