PORTB = 0b11001011;
PORTC = 0b00111011;
if(PORTB & PORTC)
{
//do something
}
//will this "if" comes out to be true?how compiler will check it?
PORTB = 0b11001011;
PORTC = 0b00111011;
if(PORTB && PORTC)
{
//do something
}
//how this "&&" be compared? if i write "if(PORTB)" than how compiler wil evaluate it?