online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/*Lección 10 Tema: 13 Ciclo WHILE, DO WHILE 2. Visualice los números del 1 al 10.*/ #include <iostream> using namespace std; int main() { setlocale (LC_CTYPE, "Spanish"); int num = 1; cout << "Los números del 1 al 10 son:\n"; do { cout << num << ". "; num++; } while(num<= 10); 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