WAP in C++ to print “HELLO WORLD”. October 29, 2015 Get link Facebook X Pinterest Email Other Apps 1. WAP in C++ to print “HELLO WORLD”. #include <iostream> using namespace std; int main(){ cout << "hello world"; system("pause"); return 0; } Comments
Comments
Post a Comment