cpp hello world example
Example 1: hello world c++
#include <iostream>
int main(){
std::cout <<"Hello World" << std::endl;
return 0;
}
Example 2: hello world c++
#include <iostream>
using std::cout;
int main()
{
cout<<"Hello world";
return 0;
}