C – Is There Lazy Evaluation When Using && Operator?

booleanc++evaluation

I would like to know if this looks correct :

while((next !=NULL) && (strcmp(next->name, some_string) < 0) {
    //some process
}

I mean, if next is NULL, then the second part of the expression won't be ever tested by the compiler? I have heard that in C++ it's the case (but I'm not even sure of it).

Can someone confirm me that I won't get strange errors on some compilers with that?

Best Answer

Yes && is short circuited and you are using it correctly.
If next is NULL string compare will never happen.

Related Question