diff --git a/client/src/pages/guide/english/cplusplus/the-if-statement/index.md b/client/src/pages/guide/english/cplusplus/the-if-statement/index.md index 0532e6b0d5..26ee6b5b0d 100644 --- a/client/src/pages/guide/english/cplusplus/the-if-statement/index.md +++ b/client/src/pages/guide/english/cplusplus/the-if-statement/index.md @@ -18,6 +18,7 @@ title: C++ If Statement // Block of statements if test expression is True } ``` +If there is only one statement after the if statement the '{ }' are not necessarily required . But if there are more number of statements after if statement, then it is mandatory to put all those statements in '{}'. If the value of the test expression is **true**, then the block of code inside the if statement is executed.