From 4d5fac7fc8fd145d31daf2496f653d8165afa9c5 Mon Sep 17 00:00:00 2001 From: divakarpuro <44550134+divakarpuro@users.noreply.github.com> Date: Thu, 31 Oct 2019 20:05:24 +0530 Subject: [PATCH] Updated // Simple C++ program to display "Hello World" --- Luke_Worley.cpp | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/Luke_Worley.cpp b/Luke_Worley.cpp index 9831a61..c8ea4d4 100644 --- a/Luke_Worley.cpp +++ b/Luke_Worley.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; +}