What would be the output of the following program? main() { int i=2 ; printf (" %d%d", ++i, ++i ); }

Correct Answer: Output may vary from compiler to compiler The order of evaluation of the arguments to a function call is unspecified

More Questions from Programming

Discussion & Comments

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