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 2.
<syntaxhighlight lang="c"> main() {
int a=2; a=++a/a++; printf("%d", a;
} </syntaxhighlight>