wap in c++ to print hello world
Hey guys in todays blog we will see how to print "hello world " in c++ language . This is the code :- #include <iostream> using namespace std; int main() { cout<<"Hello World"; return 0; } where #include<iostream> is the header file and int main to return some integer value . here is the image of the program .