Answers for "print hello world in c++ to terminal 202"

C++
9

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
1

c++ print hello world

#include <iostream>
using namespace std;

int main() {
  cout << "Hello Fellow Developers\nLet the fun begin!";
  return 0;
}
Posted by: Guest on June-01-2021

Browse Popular Code Answers by Language