If I omit the operators from statement, something like this: while(foo)
will the compiler turn it in while(foo != NULL || *foo != '\0' || foo != 0)
or while(!foo)
or something like this?
how to it is really done?
If I omit the operators from statement, something like this: while(foo)
will the compiler turn it in while(foo != NULL || *foo != '\0' || foo != 0)
or while(!foo)
or something like this?
how to it is really done?