From 8f4a27ae8aa517c6c65e97857bd93e84658ec146 Mon Sep 17 00:00:00 2001 From: Siddharth Shrivastav <44272028+damascus8@users.noreply.github.com> Date: Thu, 1 Nov 2018 03:51:33 +0530 Subject: [PATCH] new information regarding hello world (#20263) * new information regarding hello world ## Extra * you know the first ever program you write was hello world program whether it be in any language. * It is because Brian Kernighan was the first to write "hello, world" program for the documentation of the BCPL programming language developed by Martin Richards. * Fixed formatting and improved readability --- guide/english/c/hello-world/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/guide/english/c/hello-world/index.md b/guide/english/c/hello-world/index.md index 6a9c2629d9..65d5e8a08a 100644 --- a/guide/english/c/hello-world/index.md +++ b/guide/english/c/hello-world/index.md @@ -29,3 +29,8 @@ To write on console you can use the function `printf()` contained in the library ``` >hello, world ``` + + #### More Information + * Conventionally, the first ever program you write is the "hello world" program, be it in any language. + * This is because Brian Kernighan was the first to write "hello, world" program for the documentation of the BCPL programming language developed by Martin Richards. +