#include <stdio.h> #include <string.h> main() { char *a="say"; char *c="hello"; strcat(a,c); printf("%s",a); return 0; }
相关分类