From 48afcd0a3b1752af4fd1c5eeb94ea89f26329a17 Mon Sep 17 00:00:00 2001 From: kenbhatt <44290957+kenbhatt@users.noreply.github.com> Date: Tue, 30 Oct 2018 04:14:29 +0530 Subject: [PATCH] Changes in lines 6 (#23612) --- guide/english/c/if-statements/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/if-statements/index.md b/guide/english/c/if-statements/index.md index cffecbf4428..5e6ef8c38df 100644 --- a/guide/english/c/if-statements/index.md +++ b/guide/english/c/if-statements/index.md @@ -3,7 +3,7 @@ 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.A expression is an expression that 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. An expression has relational and/or logical operators operating on boolean variables. A expression evaluates to either true or false. ## Syntax of *if statement* ```