From 4f370698356724244d4dc5027e99710d55bef361 Mon Sep 17 00:00:00 2001 From: arjundixit98 <36246420+arjundixit98@users.noreply.github.com> Date: Tue, 6 Nov 2018 19:35:57 +0530 Subject: [PATCH] Adding lines and updation (#25081) --- guide/english/c/hello-world/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/guide/english/c/hello-world/index.md b/guide/english/c/hello-world/index.md index 70a3e3764e..e4953c646c 100644 --- a/guide/english/c/hello-world/index.md +++ b/guide/english/c/hello-world/index.md @@ -4,6 +4,7 @@ title: Hello World C ## Hello World +Probably the first line of text that everyone prints out on the console when one begins his/her remarkable jouney of this endless programming world. To write on console you can use the function `printf()` contained in the library `include ` ```C @@ -12,7 +13,7 @@ To write on console you can use the function `printf()` contained in the library int main(void) { - printf("hello, world\n"); //lines starting with this are called comments.. + printf("Hello World!\n"); //lines starting with this are called comments.. return 0; } @@ -28,7 +29,7 @@ To write on console you can use the function `printf()` contained in the library ## Output: ``` - hello, world + >Hello World! ``` #### More Information