Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/03/2006, 15:37
Avatar de X.Cyclop
X.Cyclop
Usuario baneado!
 
Fecha de Ingreso: diciembre-2005
Ubicación: México, D.F.
Mensajes: 1.328
Antigüedad: 19 años
Puntos: 0
Ya está:

Código:
#include <stdafx.h>
#include <iostream>

using namespace std;

int main () {
	cout << "Hello World!";
	getchar();
}
O así:
Código:
#include <stdafx.h>
#include <iostream>

int main () {
	std::cout << "Hello World!";
	getchar();
}
Gracias a EI!

Última edición por X.Cyclop; 23/03/2006 a las 15:44