Say "Hello, World!" With C++

Print Hello World! in C++

Example:

Output: Hello, World!

Approach

C++

#include <bits/stdc++.h>
using namespace std;

int main()
{
    cout << "Hello, World!";
    return 0;
}


No comments:

Post a Comment