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