define the value of variable a to 100 (#27763)

This commit is contained in:
eliberator
2018-10-26 11:22:16 +02:00
committed by Tracey Bushman
parent 1c863eb91f
commit b32c93347c

View File

@ -39,7 +39,7 @@ Note that the `else` and `else if` sections are not required, while `if` is mand
int main () { int main () {
// Local variable definition // Local variable definition
int a = 10; int a = 100;
// Check the boolean condition // Check the boolean condition
if(a < 5) { if(a < 5) {