[此贴子已经被作者于2021-1-4 22:31编辑过]
char str[]=" fafafadfaf"; char *p; p=str; while(*p) { if(*p!=' ' || *p!='\t') putchar(*p); p++; }