题目内容
下面程序的功能是将两个字符串s1和s2连接起来,请填空。#include "stdafx.h"void conj(char *p1,char *p2){char *p=p1;while(*p1)_____________;while(*p2){ *p1=_____________;p1++;p2++;}_____________;}void main(void){char s1[80],s2[80];gets(s1);gets(s2);conj(s1,s2);puts(s1);return;}
查看答案
搜索结果不匹配?点我反馈