06 2020 档案

摘要:用指针来传递数据 用指针来传递数据的一个主要原因就是函数可以修改数据。 1 //进行数值的交换 2 void swap(int *num1,int *num2) 3 { 4 int temo; 5 temp = *num1;//对指针进行解引 6 *num1 = *num2; 7 *num2 = t 阅读全文
posted @ 2020-06-25 20:20 zou-ting-rong 阅读(127) 评论(0) 推荐(0) 编辑
摘要:1 typedef struct Data{ 2 40 char *name; 3 41 char *IDCARD; 4 42 char *job_id; 5 43 char *length; 6 44 char *education; 7 45 char *marriage; 8 46 int l 阅读全文
posted @ 2020-06-06 23:43 zou-ting-rong 阅读(1911) 评论(0) 推荐(0) 编辑