You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
Templates used on this page:
Return to Undefined Value.
<syntaxhighlight lang="c"> int x=10, y; y=x++ + ++x; printf("%d %d %d %d " y, x++, x, ++x); </syntaxhighlight>
a)22,10,11,13 b)22,11,11,11 c)12,10,11,13 d)22 13 13 13