on C programming, on an if statement, if u have something like
if A && B && C {
}
if A is false, will it still move on to B and check it?
on C programming, on an if statement, if u have something like
if A && B && C {
}
if A is false, will it still move on to B and check it?
no: see "Short-circuit evaluation" in wikipedia.