From 6311a591146f1254885634817e7f35dbf08e6cda Mon Sep 17 00:00:00 2001 From: divakarpuro <44550134+divakarpuro@users.noreply.github.com> Date: Thu, 31 Oct 2019 20:03:38 +0530 Subject: [PATCH] updated // Simple C++ program to display "Hello World" --- Blain_VanNice.cpp | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/Blain_VanNice.cpp b/Blain_VanNice.cpp index 9831a61..c8ea4d4 100644 --- a/Blain_VanNice.cpp +++ b/Blain_VanNice.cpp @@ -1,9 +1,16 @@ -#include - +// Simple C++ program to display "Hello World" + +// Header file for input output functions +#include + using namespace std; - -int main(int argc, char*argv[]) -{ - cout << "Hello World!!" << endl; - return 0; -} + +// main function - +// where the execution of program begins +int main() +{ + // prints hello world + cout<<"Hello World"; + + return 0; +}