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; }