online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main(void) { int a = 5, b = 3, result; // (++a)넼 ģš°ģ„  ģ‹¤ķ–‰ķ•˜ģ—¬ aź°€ 6ģ“ 되고, 6*3 + 6 = 24 result = a * b + (++a); printf("ź²°ź³¼ = %d\n", result); int c = 6, d = 4; // (c--)넼 ė‚˜ģ¤‘ģ— ģ‹¤ķ–‰ķ•˜ėÆ€ė”œ, 6*4 + 6 = 30 result = c * d + (c--); printf("ź²°ź³¼ = %d\n", result); 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