• An 8Byte vairable with binary operations
    I am finding it a bit difficult to get a 8byte variable on which i can perform binary operations such as logical bit ORing '|' and/or logical bit ANDing '&'. cant define the variable as double as...
  • An 8Byte vairable with binary operations
    I am finding it a bit difficult to get a 8byte variable on which i can perform binary operations such as logical bit ORing '|' and/or logical bit ANDing '&'. cant define the variable as double as...
  • Problem with Shift-Operator
    Hi, I have a Problem with the Shift-Operator >> within my C-Code. I'm using PK166 V4.2 The following code should set the Variable n to 0. void main() { unsigned char n; unsigned char p; /...
  • Problem with Shift-Operator
    Hi, I have a Problem with the Shift-Operator >> within my C-Code. I'm using PK166 V4.2 The following code should set the Variable n to 0. void main() { unsigned char n; unsigned char p; /...
  • Problem with Assignment Operator Modulo
    According to K&R: x *= y + 1 is equivalent to: x = x * ( y + 1 ) And other assignment operators including modulo should be handled similarly. However, the following function does not...