Program to print the Hello world on the screen by using cpp Rajnish April 12, 2021 Code:- #include<bits/stdc++.h> using namespace std; int main() { cout<<“Hello world”; return 0; } Output:- Hello world