sizeof使用形式:sizeof(type)
#include <stdio.h> int main() { char ch ='m'; printf("sizeof('m') = %d\n",sizeof(ch)); return 0; }