Introducing to c++, basic for beginners... Episode 1

Introducing to c++, basic for beginners... Episode 1


THE CODE


#include <iostream.h>
#include <conio.h>
void main()
{
cout<<"HELLO WORLD";
getch();
}