online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> // 표준 입출력 함수 int main(){ // 프로그램 시작, main 함수 정의 int i, j; // 외부 반복문의 제어 변수 i, 내부 반복문의 제어 변수 j 선언 for (i = 0; i < 5; i++){ // 출력될 패턴의 행수를 결정하기 위한 외부 반복문 for (j = 0; j <= i; j++){ // 각 행마다 출력될 문자의 수를 결정하기 위한 내부 반복문 printf("*"); // 별 출력 } printf("\n"); // 각 행의 문자 출력이 끝나면 줄 바꿈 } 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