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