From b32c93347c78f32fa36e5b04723a64d4e33582b5 Mon Sep 17 00:00:00 2001 From: eliberator Date: Fri, 26 Oct 2018 11:22:16 +0200 Subject: [PATCH] define the value of variable a to 100 (#27763) --- guide/english/c/if/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/if/index.md b/guide/english/c/if/index.md index 3ae9e1ae11..54af4b7030 100644 --- a/guide/english/c/if/index.md +++ b/guide/english/c/if/index.md @@ -39,7 +39,7 @@ Note that the `else` and `else if` sections are not required, while `if` is mand int main () { // Local variable definition - int a = 10; + int a = 100; // Check the boolean condition if(a < 5) {