摘要:
#include <stdio.h>#include <ctype.h>int strip(char a[]){ char *p1,*p2; p1 = p2 = a; while(isspace(*p2)) { p2++; } while((*p2)!='\0') { *p1++=*p2++; } while(isspace(*(p2-1))) { p2--; } *p2='\0'; return... 阅读全文
posted @ 2013-03-11 23:14
lexus
阅读(155)
评论(0)
推荐(0)
浙公网安备 33010602011771号