• 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. ...
  • 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 operator
    Hai can anyone give the information abt sizeof... how to sizeof operatot exactly in 8051 family
  • sizeof operator
    Hai can anyone give the information abt sizeof... how to sizeof operatot exactly in 8051 family
  • printf outputs wrong result when do multiplication
    volatile unsigned char a; a = 3; printf("%u\n", a * 100); The output is 11264. Why? Any reply would be greatly appreciated.