From a674171714782e4ed9267ec262834df456193cf1 Mon Sep 17 00:00:00 2001 From: kenbhatt <44290957+kenbhatt@users.noreply.github.com> Date: Mon, 5 Nov 2018 02:48:04 +0530 Subject: [PATCH] My change is line 30. (#23571) Printing hello, world correctly according to the code above given. --- guide/english/c/hello-world/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/c/hello-world/index.md b/guide/english/c/hello-world/index.md index 982fae60e3..70a3e3764e 100644 --- a/guide/english/c/hello-world/index.md +++ b/guide/english/c/hello-world/index.md @@ -28,10 +28,10 @@ To write on console you can use the function `printf()` contained in the library ## Output: ``` - >hello, world + 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.