show hello world in c++ code example
Example 1: c++ code to print hello world
#include<iostream>
using namespace std;
int main(){
cout << "Hello World" << endl;
return 0;
}
Example 2: hello world in c++
#include <bits/stdc++.h>
using namespace std;
int main(){
cout << "hello world! \n";
} //code by goukl aakash