online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/* EJEMPLO 11.6. Reserva espacio en memoria para un array de 5 elementos, y la libera */ #include <iostream> using namespace std; int main(int argc, char *argv[]){ float *DatosI = new float[5]; for (int i=0; i<5; i++) DatosI[i] = 2*i+1;; // asigamos valores al puntero DatosI cout<<"los 5 primeros impares son \n"; for (int i=0; i<5; i++) cout<<" "<<DatosI[i]; // imprimimos el puntero DatosI cout<<endl; delete [] DatosI; // Libera memoria return EXIT_SUCCESS; }

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