Hello all, I have been pondering upon getting each bit of a variable (e.g. declared as char) using a for loop char bdata Char1; bit y; for(x=0; x<7; x++) y = Char1^x; My question is : Is it possible?
bit y; for(x=0; x<7; x++) y = Char1^x;