online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#pragma warning(disable: 4996) // 컴파일러 경고 비활성화 (scanf 관련 보안 경고 무시) #include <stdio.h> // 표준 입출력 함수 사용을 위한 헤더 int main() { int a, b; // 두 정수를 저장할 변수 char op; // 연산자를 저장할 문자형 변수 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