• sizeof operator
    Hai can anyone give the information abt sizeof... how to sizeof operatot exactly in 8051 family
  • sizeof bugs...
    As we all know... sizeof( typedef ) should return the size, in bytes, of its operand. If the operand is a type, such as a float, it must be enclosed in parentheses. I found a bug in sizeof( tMyStruct...
  • Sizeof operator gives wrong output with printf for some data types
    Hi! I am using sizeof operator in my c code. I have been through the thread "C51: INCORRECT OPERATION OF PRINTF AND SIZEOF".I tried the same.But it shows size of 'short int' as well as 'int' as 2...
  • The "sizeof operator with string" bug when use command line in "output window"
    I do not speak english,so i try to show my meaning When you use command line in debug mode, sizeof("a") //value is 1 sizeof('a') //value is 2 would got wrong value. seems been upended. ...
  • sizeof to assembler
    I use the following means of making .h files usable in assembler #ifdef CCODE // bypass structs for assembler modules structs ... such as typedef struct { ......... } E1_SEI; #endif extern...