char和unsigned char的sizeof值为1,毕竟char是编程能用的最小数据类型。 MSDN上的解释为: The sizeof keyword gives the amount of storage, in bytes, associated with avariable or a type (including aggregate types). This keyword returns a value of type size_t. 2、语法: sizeof有三种语法形式,如下...