online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main(void) { int a, b; char op; // 사용자에게 “두 정수 덧셈 (ex 10 + 20): ” 입력을 유도 printf("두 정수 덧셈 (ex 10 + 20): "); // 정수 → 연산자 → 정수 순으로 입력받음 scanf("%d %c %d", &a, &op, &b); // 입력된 값을 그대로 출력하고 합을 계산하여 보여줌 printf("%d %c %d = %d\n", a, op, b, a + b); 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