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; +}