Sunday, June 5, 2016

Hello World Program in C++

One of the most common sample program that is being presented by teachers in computer program is the Hello World program. In this example I am sharing with you a hello world program written in C++ programming language this program is intended for those people that are very new in C++ programming. It only display a message "Hello World in C++." on the screen of the computer.

 Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com

My mobile number here in the Philippines is 09173084360



Sample Program Output


Program Listing

hello.cpp

#include <iostream>
#include <stdlib.h>

using namespace std;

int main()
{
    cout << "Hello World in C++.";
    cout <<"\n\n";
    system("pause");
}


No comments:

Post a Comment