摘要:
1 /* 输入学生成绩并显示 */ 2 # include 3 4 struct student 5 { 6 char number[6]; 7 char name[6]; 8 int score[3]; 9 } stu[2]; 10 11 void output(struct student stu[2]); 12 13 void main(... 阅读全文
摘要:
1.字符编码 字符与数字的对应关系表 ASCII:能识别英文字符,1Byte=1英文字符 hello 8bit|8bit|8bit|8bit|8bit GBK:汉字与英文字符,2Byte=1中文字符 1Byte=1英文字符 你a好 8bit|8bit|8bit|8bit|8bit 你 1111 11 阅读全文