From f6d58d284d82d131251166cf394f328067494ab1 Mon Sep 17 00:00:00 2001 From: Harshal Jethwa Date: Wed, 4 Oct 2023 15:53:11 +0530 Subject: [PATCH] Create Hello World HACKTOBERFEST2023 --- Hello World | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Hello World diff --git a/Hello World b/Hello World new file mode 100644 index 0000000..34d86c4 --- /dev/null +++ b/Hello World @@ -0,0 +1,6 @@ +#include +int main() { + // printf() displays the string inside quotation + printf("Hello, World!"); + return 0; +}