|    
			
				03/04/2006, 14:40
			
			
			  | 
  |   |  | Usuario baneado! |  |  Fecha de Ingreso: diciembre-2005 Ubicación: México, D.F. 
						Mensajes: 1.328
					 Antigüedad: 19 años, 10 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.       |