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