C++ Programming

Write a program to print Hello, World on the standard output.

#include <iostream>
using namespace std;

//main function begins from here

int main()

{

//print Hello World

cout<<"Hello, World"<<endl;

return 0;

}

Output

Hello, World
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments