Answers for "c++ code to print hello world"

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

Browse Popular Code Answers by Language