柠檬试题库
search
首页
计算机
公务员
驾照
关于
strcpy
有以下程序 #include
#include
main() { char p[20]={'a', 'b', 'c', 'd'}, q[]="abc", r[]="abcde"; strcat(p, r); strcpy(p+strlen(q), q); printf("%d\n", strlen(p)); } 程序运行后的输出结果是
有以下程序(strcpy为字符串复制函数,strcat为字符串连接函数) #include
#include
main() { char a[10] = "abc", b[10] = "012", c[10] = "xyz"; strcpy( a+1, b+2 ); puts( strcat( a, c+1 ) ); } 程序运行后的输出结果是
随机标签
寄生
emp
shape1
100米以下
上界