摘要: 阅读全文
posted @ 2020-05-15 15:14 monsieurnan 阅读(106) 评论(0) 推荐(0) 编辑
摘要: p->next=q;//p指向的方向是q p=p->next;//指针后移 q->next=p->next;//增添结点q 1 strcpy(s1, s2);复制字符串 s2 到字符串 s1。 2 strcat(s1, s2);连接字符串 s2 到字符串 s1 的末尾。 3 strlen(s1);返 阅读全文
posted @ 2020-05-15 15:08 monsieurnan 阅读(97) 评论(0) 推荐(0) 编辑