字符串指针
strlen()
未初始化,报错;否则是字符串长度(字符串以0结尾)
sizeof()
始终是4
字符串数组
strlen()
字符串以0结尾时,结果是字符串长度,否则随机;
sizeof()
返回数组长度
printf("%d\n",sizeof(char)); //1
printf("%d\n",sizeof(int)); //4
printf("%d\n",sizeof(float)); //4
printf("%d\n",sizeof(double)); //8