#include#includevoidmain(){chara[20],b[20];strcpy(a,"apple");strcpy(b,a);strcpy(a,"OK");puts(a);}(5.0分)
举一反三
- 写出程序运行结果:#include"stdio.h"#include"string.h"main(){charst1[15],st3[15],st2[]="CLanguage";strcpy(st1,st2);strcpy(st3,st2,3);puts(st1);puts(st3);printf("");}
- 如果在程序中需要用到strcpy、strcat等库函数时,需要用#include包含头文件。 A: math.h B: string.h C: ctype.h D: stdio.h
- 使用strcpy函数应该包含头文件____。 A: stdio.h B: conio.h C: string.h D: math.h
- #include “string.h”main(){ char p[20]={‘a’,’b’,’c’,’d’}; char q[ ]=“abc”,r[ ]=“abcde”; strcpy(p+strlen(q),r); strcat(p,q);puts(p);}程序的输出结果为 。
- char s[80], *sp = HELLO!”; sp = strcpy(s, sp); s[0] = ‘h’; puts(sp);