online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
// 1a.cpp #include <iostream> #include <cstdlib> // Para ejecutar comandos del terminal como system("clear"), la cual limpia la pantalla #include <unistd.h> // Para la funcion: usleep(200000), la cual "durme" a la computadora por 200 milisegundos using namespace std; void sueno(int n); int main() { system("clear"); for (int j = 0; j < 20; ++j) cout << endl; usleep(200000); sueno(10); cout << " EL CIELO ES MI LIMITE\n\n"; sueno(10); } void sueno(int n) { for (int j = 0; j < n; ++j) { cout << "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n\n"; usleep(200000); cout << ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n\n"; usleep(200000); } }

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