Ver Mensaje Individual
  #9 (permalink)  
Antiguo 30/08/2010, 14:36
dgerman71
 
Fecha de Ingreso: agosto-2010
Mensajes: 1
Antigüedad: 14 años, 4 meses
Puntos: 0
Respuesta: Una duda sobre el codigo system ("PAUSE");

// Con Dev-c++ funciona bien

#include <stdio.h>

#include <stdlib.h>

#include <iostream>

using namespace std;

int main ()

{

cout <<"hola"<<endl;

system ("PAUSE");

return EXIT_SUCCESS;

}