Difference between unsigned and unsigned int in C

后端 未结 5 1435
野趣味
野趣味 2020-11-28 11:09

Could you please make it clear what the difference is between unsigned and unsigned int? Maybe some example code would be helpful.

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-28 11:37

    There is no difference. unsigned and unsigned int are both synonyms for the same type (the unsigned version of the int type).

提交回复
热议问题