[ create a new paste ] login | about

Link: http://codepad.org/aia32mDC    [ raw code | output | fork ]

C, pasted on Nov 12:
1
2
3
4
5
6
7
8
main()
{
int x,y;
x=10;
y=2+x++;
printf("value of x is %d",x++);
printf("Value of x after increment is %d",y);
}


Output:
1
2
value of x is 11Value of x after increment is 12
Exited: ExitFailure 32


Create a new paste based on this one


Comments: