online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/*EJERCICIO PROPUESTO #8-CICLO WHILE, DO-WHILE 3.-Mostrar en pantalla la tabla del 6.*/ #include<iostream> using namespace std; int main(){ int i=1; cout<<"**********************************************************"<<endl; cout<<"* 8.- Visualice la tabla de multiplicar del 6. *"<<endl; cout<<"**********************************************************"<<endl<<endl; cout<<" *************"<<endl; while(i<=12){ cout<<" 6 x "<<i<<" = "<<6*i<<endl; i++; } cout<<" *************"<<endl; cout<<endl<<endl<<"> > > > > > > > Hecho por Victor Galarza < < < < < < < <"<<endl; 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