Header Ads Widget

Program to print the Hello world on the screen by using cpp

 Code:-

#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"Hello world";
return 0;
}

Output:-

Hello world




Post a Comment

0 Comments