char (*split(char *strs))[1024]{static char temp[1024][1024];int i, j=0;for (i=0; strs[i]!='\0'; i++){temp[j][i]=strs[i];if (strs[i]==' ') {printf("%s\n", temp[j]);j++;}}return temp;}函数头很难看是不是,弄个typedef就简单明了多了://还有,...