Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/06/2007, 20:31
Avatar de antoniog
antoniog
 
Fecha de Ingreso: junio-2006
Mensajes: 118
Antigüedad: 17 años, 11 meses
Puntos: 4
Información Re: ayuda a un novato d c++

Hola,

A ver, algo asi:
Código:
#include<stdio.h>
#include<conio.h>

int main ()
	{
	printf("Hola mundo!\n");
	getch();
	return 0;
	}