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