Stephie
0
Q:

c++ code to print hello world

#include <iostream>


int main(){
 std::cout <<"Hello World" << std::endl;
 return 0;
}
21
#include<iostream>
using namespace std;

int main(){
 
  cout << "Hello World" << endl;
  
  return 0;
}
4

New to Communities?

Join the community