how to write hello world c 2b 2b

Solutions on MaxInterview for how to write hello world c 2b 2b by the best coders in the world

showing results for - "how to write hello world c 2b 2b"
Elea
07 May 2017
1#include <iostream> 
2
3int main () 
4{
5  std::cout << "Hello world" << endl; 
6  return 0;
7}