u_char与char的区别
举个例子即可看出u_char和char的区别:
u_char a;
char b;
a=0xff;
b=0xff;
printf("a=%d\nb=%d\n",a,b);
执行结果为:
a=255
b=-1