online compiler and debugger for c/c++

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