From 528b7b413eacd035a9644fb47b82ff0d8fa7169f Mon Sep 17 00:00:00 2001 From: blankaex Date: Fri, 2 Nov 2018 19:13:29 +1000 Subject: [PATCH] Added missing spaces (#24171) --- guide/english/c/if-statements/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guide/english/c/if-statements/index.md b/guide/english/c/if-statements/index.md index 5e6ef8c38d..aa4740ec98 100644 --- a/guide/english/c/if-statements/index.md +++ b/guide/english/c/if-statements/index.md @@ -3,7 +3,8 @@ title: Logical Operators and If Statements --- # If Statements in C -The ability to change the behavior of a piece of code which is based on certain information in the environment is known as conditional code flow.Sometimes you want your code to run according to certain conditions. In such situation we can use If statements. It is also known as decision making statement as it makes the decision on the basis of given expression(or on given condition).If the expression evaluates to true, then the block of code inside the 'if' statement will be executed. If the expression evaluates to false, then the first set of code after the end of the 'if' statement (after the closing curly brace) will be executed. An expression has relational and/or logical operators operating on boolean variables. A expression evaluates to either true or false. + +The ability to change the behavior of a piece of code which is based on certain information in the environment is known as conditional code flow. Sometimes you want your code to run according to certain conditions. In such situation we can use If statements. It is also known as decision making statement as it makes the decision on the basis of given expression(or on given condition). If the expression evaluates to true, then the block of code inside the 'if' statement will be executed. If the expression evaluates to false, then the first set of code after the end of the 'if' statement (after the closing curly brace) will be executed. A expression is an expression that has relational and/or logical operators operating on boolean variables. A expression evaluates to either true or false. ## Syntax of *if statement* ```