typo - update value of a to 100 (#27853)

This commit is contained in:
eliberator
2018-10-26 11:24:34 +02:00
committed by Tracey Bushman
parent 18809dac08
commit d14ec72fb8

View File

@ -36,7 +36,7 @@ if (condition) {
int main () {
// Local variable definition
int a = 10;
int a = 100;
// Check the boolean condition
if(a < 5) {
@ -59,4 +59,4 @@ if (condition) {
-> a is not less than 5!
-> Value of a is : 100
```
```