online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main(void) { int i, j; const int rows = 5; // 총 줄 수 for (i = 1; i <= rows; i++) { // 1) 앞 공백 찍기: rows - i개 for (j = 1; j <= rows - i; j++) { printf(" "); } // 2) 별 찍기: i개 for (j = 1; j <= i; j++) { printf("*"); } // 3) 줄바꿈 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