online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/*Program to understand the use of postfix increment/decrement*/ #include<stdio.h> int main(void) { int x=8; printf("x=%d\t", x); printf("x=%d\t", x++); /*postfix increment*/ printf("x=%d\t", x); printf("x=%d\t", x--); /*postfix decrement*/ printf("x=%d\n", x); return 0; }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue