• 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...
  • Unexpected output from "sizeof"
    Could someone please explain the following: I tried using sizeof command to find out the size of the an int variable by printf("%d\n", sizeof(int)); I was expecting an output of 2 . But interestingly...
  • printing sizeof() values
    I'm trying to print out sizeof() values for some of my structures. They are coming out incorrect. Here is a small table in which I've done this on different platforms: Linux : sizeof(TChannel) = 1460...
  • 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...