From e87cb08a511c0aa6d03f472be2b4f35fec386d36 Mon Sep 17 00:00:00 2001 From: Aman Sharma Date: Sat, 3 Oct 2020 23:56:29 +0530 Subject: [PATCH] Update HelloWorld.cpp Changed string to "Hello World!!" --- HelloWorld.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HelloWorld.cpp b/HelloWorld.cpp index 988914c..9831a61 100644 --- a/HelloWorld.cpp +++ b/HelloWorld.cpp @@ -4,6 +4,6 @@ using namespace std; int main(int argc, char*argv[]) { - cout << "Hello!" << endl; + cout << "Hello World!!" << endl; return 0; }