From fbe975e3e5e121a9aa85f3e768dc1b17e98f7b98 Mon Sep 17 00:00:00 2001 From: eliberator Date: Mon, 12 Aug 2019 18:49:14 +0200 Subject: [PATCH] typo - actualiza el valor del variable a (#27764) --- guide/spanish/c/if/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/spanish/c/if/index.md b/guide/spanish/c/if/index.md index 7255f07b06c..629d07527d6 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 +```