Answers for "how can print "hello world" in c++"

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
0

hello world in c++

#include <iostream>

using namespace std;

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

Browse Popular Code Answers by Language