Hello World
This is a normal introductory program, the hello world !
This program is crafted using the C++ Language.
Description:
The Above program just prints a line Hello World !
This program is crafted using the C++ Language.
#include<iostream>
using namespace std;
int main()
{
cout<<"Hello World !"<<endl;
return 0;
}
Description:
The Above program just prints a line Hello World !
Comments
Post a Comment