C++ program to print HELLO WORLD

Last Updated on 19 Jan 2022 by Satya Prakash Singh Rathour
1 mins read

C++ program to print HELLO WORLD 

#include <bits/stdc++.h>

using namespace std;
signed main()
{

    cout << "HELLO WORLD\n";
    return 0;
}

Category: Python | General Programming

Relavent Tags: C++