simple cpp code

Solutions on MaxInterview for simple cpp code by the best coders in the world

showing results for - "simple cpp code"
Giacomo
21 Jan 2018
1#include<iostream>
2using namespace std;
3
4int main()
5{
6cout << " hello world <<endl;
7  
8  return 0;
9}
Carsten
05 May 2016
1#include<iostream>
2using namespace std;
3
4int main()
5{
6cout << " hello world" <<endl;
7  
8  return 0;
9}