Tuesday, 3 July 2018

c++ program that print hello world

wirte a program in that Print Hello World

solution :

#include <iostream>
using namespace std;

int main() {

cout<<"Hello World"<<endl;

return 0;
}

No comments:

Post a Comment