/* char型の種類 */ /* chratype.c */ #include int main(void) { char c; c='\xff'; printf("c = %d\n",c); return 0; }