diff --git a/guide/spanish/c/if/index.md b/guide/spanish/c/if/index.md index 7255f07b06..629d07527d 100644 --- a/guide/spanish/c/if/index.md +++ b/guide/spanish/c/if/index.md @@ -36,7 +36,7 @@ Tenga en cuenta que las `else` y " `else if` no son necesarias, mientras que `if int main () { // Local variable definition - int a = 10; + int a = 100; // Check the boolean condition if(a < 5) { @@ -59,4 +59,4 @@ Tenga en cuenta que las `else` y " `else if` no son necesarias, mientras que `if -> a is not less than 5! -> Value of a is : 100 -``` \ No newline at end of file +```