online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> // 표준 입출력 함수 int main(){ // 프로그램 시작, main 함수 정의 printf("정수: %d\n", 100); // %d는 정수 출력 형식 지정자,정수(decimal) 100 출력 printf("실수: %f\n", 10.123); // %f는 실수 출력 형식 지정자,실수(float) 10.123 츨력 printf("문자: %c\n", 'A'); // %c는 단일문자 출력 형식 지정자, (' ') 안의 단일 문자(character) A 출력 printf("문자열: %s\n", "Hello, C!"); // %s는 문자열 출력 형식 지정자,(" ")안의 문자열(string) Hello, C 출력 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