From a18126468001e108bf036afa3fe230bf5feae82c Mon Sep 17 00:00:00 2001 From: jkunal14 <43882559+jkunal14@users.noreply.github.com> Date: Fri, 5 Oct 2018 22:24:35 +0530 Subject: [PATCH] Update meghana_hello_world.c --- C/meghana_hello_world.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/C/meghana_hello_world.c b/C/meghana_hello_world.c index 71071752a..5b33c332f 100644 --- a/C/meghana_hello_world.c +++ b/C/meghana_hello_world.c @@ -1,7 +1,9 @@ #include - +//This code is to display the functionality of printf function int main() { - printf("\nHello World\n"); + //the newline and tab space function + printf("Hello World \n"); + printf("\t Hacktoberfest"); return 0; }