We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
unsigned char a=0x12; unsigned char b=0x22; if(a!=b&0xff)//is not true,but why? a = 0; else b = 0;//execute this
"a!=b" is true ,so “true &0xff ”should be true,I want to know the c51 compiler why do this?
Thanks!