online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
// Este programa muestra una lista de números // de este tipo: // 1 // 1 2 // 1 2 3 // ... // 11/09/2000 Salvador Pozo #include <iostream> // biblioteca para uso de cout using namespace std; int main() // función principal { int i, j; // variables para bucles for(i = 1; i <= 20; i++) // bucle hasta i igual a 20 { for(j = 1; j <= i; j++) // bucle desde 1 a i cout << j << " "; // muestra el número cout << endl; // cambio de línea } 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