• sizeof operator
    Hai can anyone give the information abt sizeof... how to sizeof operatot exactly in 8051 family
  • problem with sizeof
    hi i wrote this code which is written bellow when ever i check the value of u it appear to be the 3. while it is supposed to be 8. Can any body tell me what is the problem with this code and how can...
  • 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...
  • sizeof struct
    I have a struct with 2 members of type double and 1 member of type long. The sizeof() function returns 24. Normaly it should be 20(2*8bytes for the doubles and 4 bytes for the long). When I add...
  • Unbounded Arrays and the sizeof operator
    I take it using sizeof() on a array that is unbounded is a problem (I am getting sizeof returns size of type 0 warnings). I have defined a constant array of pointers unbounded IE #define CCHARPTR...