Answers for "hello world g++"

C++
27

hello world c++

#include <iostream>


int main(){
 std::cout <<"Hello World" << std::endl;
 return 0;
}
Posted by: Guest on February-07-2020
0

hello world c++

//Dude cmon but ok
cout << "Hello world";
Posted by: Guest on December-31-2021
0

hello world in c++

#include <iostream>

int main() {
  std::cout << "Hello World!";
  
  return 0;
}
Posted by: Guest on January-06-2021

Browse Popular Code Answers by Language