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) {