Answers for "shortest way to hello world in c++"

C++
26

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

cout<<"Hello world"<<endl;
Posted by: Guest on January-14-2022

Browse Popular Code Answers by Language