online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main() { int a = 5; // 5둜 μ΄ˆκΈ°ν™” int b = 3; // 3으둜 μ΄ˆκΈ°ν™” int result; result = a * b + (++a); // 이항 μ—°μ‚°μž *와 증가 μ—°μ‚°μž ++ μ‚¬μš© 15 + 6 = 21 printf("κ²°κ³Ό = %d, %d\n", result, a); int c = 6; // 6으둜 μ΄ˆκΈ°ν™” int d = 4; // 4둜 μ΄ˆκΈ°ν™” result = c * d + (c--); // 이항 μ—°μ‚°μž *와 κ°μ†Œ μ—°μ‚°μž -- μ‚¬μš© 6 * 4 = 24 + 6 = 30, 5 printf("κ²°κ³Ό = %d, %d\n", result, c); a = 10, b = 5, c = 6; result = ++a * --b + (++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