Answers for "c++ hex hello world"

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++

#include <iostream> 

int main()
{
  std::cout << "Hello World!"; //you can add new line by adding "\n" or {<< endl}
  return 0; //exit code 0
}
Posted by: Guest on October-08-2021

Browse Popular Code Answers by Language