WAP in C++ to print “HELLO WORLD”.

1.       WAP in C++ to print “HELLO WORLD”.

 #include <iostream>
using namespace std;
int main(){

      cout << "hello world";
      system("pause");
      return 0;
}
     

Comments