• type casting?
    Hello, a question about how C166 handles type conversions: I have this: unsigned long c; unsigned char i, d if the following code is executed: c = 20403776; i = 0; d = 3; c += pow...
  • type casting?
    Hello, a question about how C166 handles type conversions: I have this: unsigned long c; unsigned char i, d if the following code is executed: c = 20403776; i = 0; d = 3; c += pow...
  • regarding type casting
    my program stop running while executing the following line. (struct IFramHead *) ptr) ->length = Length; where declaration are as bellow: 1: unsigned int Length 2: struct IFramHead { ...
  • regarding type casting
    my program stop running while executing the following line. (struct IFramHead *) ptr) ->length = Length; where declaration are as bellow: 1: unsigned int Length 2: struct IFramHead { ...
  • warning: #191-D: type qualifier is meaningless on cast type
    I have this line of code: pcTraceBuffer = ( volatile signed portCHAR * volatile )pcBuffer; it compiled with the previous version without warning. with the new Keil/Realview tool, I got a warning...