Ver Mensaje Individual
  #28 (permalink)  
Antiguo 03/04/2006, 14:40
Avatar de X.Cyclop
X.Cyclop
Usuario baneado!
 
Fecha de Ingreso: diciembre-2005
Ubicación: México, D.F.
Mensajes: 1.328
Antigüedad: 18 años, 4 meses
Puntos: 0
Hola mundo en C++:

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

using namespace std;

int main () {
	cout << "Hello World!";
	getchar();
}
o

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

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