hello world program in c++ (CPP)

/*Write a hello world program in c++.*/

#include<iostream.h>
#include<conio.h>

void main()

{
    cout<<"Hello World"<<endl;      //Print "Hello World" in output.
    getch();
}

Post a Comment

0 Comments