Computer Science, asked by gurucharan6794, 11 months ago

How to write "Hello World" Program in C++?

Answers

Answered by skmusical18
2

#include<iostream>

using namespace std;

int main ()

{

cout <<"hello world!!!!";

return 0;

}

Similar questions