#include <stdio.h> #include <string.h> main() { char *a="say"; char *c="hello"; strcat(a,c); printf("%s",a); return 0; } 查看完整描述