c 2b 2b code to print hello world

Solutions on MaxInterview for c 2b 2b code to print hello world by the best coders in the world

showing results for - "c 2b 2b code to print hello world"
Emma
10 Aug 2016
1#include<iostream>
2using namespace std;
3
4int main(){
5 
6  cout << "Hello World" << endl;
7  
8  return 0;
9}