c語言字元常量當做整型

jiangzhengdong發表於2013-02-26

c語言:sizeof('a')==sizeof(int);

c++:sizeof('a')==sizeof(char);

標準c規定c語言中字元常量是Int型別。

參見:http://c-faq.com/charstring/sizeofchar.html


c語言常見問題:http://c-faq.com/

相關文章