From a3f2038ab25171342955c05d3784d4f1a3582000 Mon Sep 17 00:00:00 2001 From: devashishpurohit <42600084+devashishpurohit@users.noreply.github.com> Date: Thu, 31 Oct 2019 18:31:27 +0530 Subject: [PATCH] Updated --- original/hello.cpp | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/original/hello.cpp b/original/hello.cpp index 4d4a95e..c8ea4d4 100644 --- a/original/hello.cpp +++ b/original/hello.cpp @@ -1,11 +1,16 @@ -//File: hello.cpp -#include -using namespace std; - -int main(void) { - cout << "Hello, World\n"; - cout << "Hello, Jenkins\n"; - - cout << "I have successfully built and run\n"; - return 0; -} +// Simple C++ program to display "Hello World" + +// Header file for input output functions +#include + +using namespace std; + +// main function - +// where the execution of program begins +int main() +{ + // prints hello world + cout<<"Hello World"; + + return 0; +}