Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

how to print hello world in c++

#include <iostream>
using namespace std;

int main()
{
 	cout << "Hello World
";
  	return 0;
}
 
PREVIOUS NEXT
Tagged: #print #world
ADD COMMENT
Topic
Name
9+7 =