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