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); // 이항 μ—°μ‚°μž *와 증가 μ—°μ‚°μž ++ μ‚¬μš© printf("κ²°κ³Ό = %d\n", result); // 6(μ¦κ°€λœ a의 κ°’) * 3 + 6 = 24 int c = 6; // 6으둜 μ΄ˆκΈ°ν™” int d = 4; // 4둜 μ΄ˆκΈ°ν™” result = c * d + (c--); // 이항 μ—°μ‚°μž *와 κ°μ†Œ μ—°μ‚°μž -- μ‚¬μš© printf("κ²°κ³Ό = %d\n", result); // 6(ν˜„μž¬ c의 κ°’) * 4 + 6 = 30 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