我这段程序有问题吗? charplus.c char* charplus(char *c1, char *c2) { char *c=*c1+*c2; return c; }
你想连接两个字符串成一个新的字符串么?那么应该调用 strcat 不能直接指针相加