I am a bit confused here; I have this expression
! (1 && !(0 || 1))
What would this evaluate?
I tried to see it in logic as I go the steps:
NOT (1 AND NOT(0 OR 1)) //0 NOT 1? what is this mean? How I can evaluate 0 NOT 1?
Will this expression give me true? false or just not compiled?
Anyone?