This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

About MDK‘s help’

I am a beginner of MDK,but I am very familiar with Keil for C51 and it has been in use.So i feel kind of KEIL's product.But when I begin to use MDK,I find it's help
is not useful.I even can't find easy information,E.g.:int type is in bytes,and strcmp funtion usage.I don't know what to do .Please help me.Thank you very much.

Parents
  • The normal way to specify the size of data types is in number of characters. Just that it is common that a "char" is one byte (8 bits) large.

    strcmp() is a standard C RTL function - so what issues do you have with it? Don't you feel that the Keil implementation fulfills the requirements in the C language standard?

Reply
  • The normal way to specify the size of data types is in number of characters. Just that it is common that a "char" is one byte (8 bits) large.

    strcmp() is a standard C RTL function - so what issues do you have with it? Don't you feel that the Keil implementation fulfills the requirements in the C language standard?

Children