Answers for "c++ how to print hello world in javascript"

C++
1

how to print hello world in c++

#include <iostream>
using namespace std;

int main()
{
 	cout << "Hello Worldn";
  	return 0;
}
Posted by: Guest on August-31-2021
0

print hello world in c++

#include <iostream>
using std::cout;
int main()
{ 
    cout<<"Hello world";
    return 0;
}
0
Posted by: Guest on June-05-2021

Browse Popular Code Answers by Language