Answers for "hello c++"

C++
28

hello world c++

#include <iostream>


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

c++ code to print hello world

#include<iostream>
using namespace std;

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

hello c++

#include <iostream>

using namespace std;

int main()
{
    cout << "Hello World" << endl;
}
Posted by: Guest on August-24-2021

Browse Popular Code Answers by Language