Answers for "print hello wortld c++"

C++
1

print hello world c++

#include <iostream> 
using namespace std;
main() {
  cout << "Hello world" << endl; 
}
Posted by: Guest on March-27-2021
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

Browse Popular Code Answers by Language