Answers for "how to write hello world c++"

C++
-1

how to write hello world c++

#include <iostream> 

int main () 
{
  std::cout << "Hello world" << endl; 
  return 0;
}
Posted by: Guest on October-04-2020

Browse Popular Code Answers by Language