From a9dfb97bbde8de26ec150befdb1e1082641e59af Mon Sep 17 00:00:00 2001 From: shadmantaqi <44544473+shadmantaqi@users.noreply.github.com> Date: Wed, 19 Dec 2018 04:59:16 +0600 Subject: [PATCH] Change The printf function of the Hello World code (#30996) Just changing the printf string of the Hello World code to match the code used later in the article --- guide/english/c/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/index.md b/guide/english/c/index.md index e7227da4cc..df40961c97 100644 --- a/guide/english/c/index.md +++ b/guide/english/c/index.md @@ -27,7 +27,7 @@ Now that you have that background, let's start with our 'Hello, World' program. int main(void) { - printf("hello, world\n"); + printf("Hello, World!\n"); return 0; } ```