From 9a01bf8b9863adb5a8fed13de141f016326a917a Mon Sep 17 00:00:00 2001 From: Rishabh Singh Chauhan <143814425+Rsc2414@users.noreply.github.com> Date: Sun, 20 Jul 2025 22:38:03 +0530 Subject: [PATCH] Update 001. Say Hello, World! With Cpp.cpp --- C++/01. Introduction/001. Say Hello, World! With Cpp.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/C++/01. Introduction/001. Say Hello, World! With Cpp.cpp b/C++/01. Introduction/001. Say Hello, World! With Cpp.cpp index d3ee14d..a6611ef 100644 --- a/C++/01. Introduction/001. Say Hello, World! With Cpp.cpp +++ b/C++/01. Introduction/001. Say Hello, World! With Cpp.cpp @@ -1,10 +1,12 @@ // Problem: https://www.hackerrank.com/challenges/cpp-hello-world/problem // Score: 10 - -#include +#include // This allows us to use input and output (cin, cout) int main() { + // Print "Hello, World!" to the output std::cout << "Hello, World!"; + + // Return 0 to indicate the program ended successfully return 0; }