I'm wondering, if I have the following code:
v = 5;
if (v == 5) {
v++;
}
else {
//do something else
}
will my program "execute" the else part since my variable v
is now different from 5
?
No it will not execute the else statement if the if condition is satisfied