What would be the output of the following program? main() { int i = -3, j =2, k =0, m ; m = ++j && ++i || ++k ; Printf ( " %d%d%d%d", i , j , k , m ); }

Correct Answer: -2 3 0 1

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion