online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main() { int a = 10; //10로 초기화 int b = 5; //5으로 초기화 int c = 6; //6으로 초기화 int result; 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