Hey guys, I know there are a lot of good programmers on this forum! I'm kind of new to programming and need some help with part of my assignment.
1.
char a = 0x84;
char b = 0132;
char c;
c = (a | b) & 91;
printf(“symbol is %c”, c);
I know 0x84 = 1000 0100
and 0132 = 0101 1010
(a|b) = 1101 1110
But what is c = ?, i dont understand what it means by '&91'
2.
Supposed your PIC and LCD display are connected and properly connected. What does
this command do?
printf(“%c%c”, 0376, 0b11000011);


Reply With Quote


