From b490b37c7dae6adcf245d4af74efbba3bee0f0cc Mon Sep 17 00:00:00 2001 From: SAR2003 <78529701+SAR2003@users.noreply.github.com> Date: Wed, 10 Mar 2021 02:16:56 +0530 Subject: [PATCH] Update HelloWorld.cpp --- HelloWorld.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HelloWorld.cpp b/HelloWorld.cpp index 988914c..67a294b 100644 --- a/HelloWorld.cpp +++ b/HelloWorld.cpp @@ -1,9 +1,9 @@ -#include +#include using namespace std; -int main(int argc, char*argv[]) +int main() { - cout << "Hello!" << endl; + cout << "Hello World!" << endl; return 0; }