online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> // 표준 입출력 함수 int main(){ // 프로그램 시작, main 함수 정의 int total = 89; // 총점, 정수형 변수 total 선언, 변숫값 89 저장 float average = 95.2f; // 평균, 실수형 변수 average 선언, 변숫값 95.2f 저장 printf("총점: %d\n", total); // 총점 출력, %d 형식 지정자_변수 total의 정숫값 출력 printf("평균: %.2f\n", average); // 평균 출력, %.2f 형식 지정자_변수 average의 실숫값을 소수점 아래 둘째 자리까지 출력 printf("총점: %d, 평균: %.2f\n", total, average); // 총점, 평균 출력을 (,)로 한꺼번에 출력 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