• 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...
  • 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...
  • how to send a string to output window
    how can I send a string to output window in keil c51 uVision when complete compile?
  • 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...