//编个小程序验证一下
#include<iostream>
#include<stdlib.h>
#include <stdio.h>
int main()
{
printf("uchar有%d个字节", sizeof(unsigned char));
system("pause");
return 0;
}
结果是:1个字节
//编个小程序验证一下
#include<iostream>
#include<stdlib.h>
#include <stdio.h>
int main()
{
printf("uchar有%d个字节", sizeof(unsigned char));
system("pause");
return 0;
}
结果是:1个字节
2922
3206
1288

被折叠的 条评论
为什么被折叠?
