没有专门的去前置0的,自己弄一个也不困难啊void trim0(char* s){ char t[100]; char* sp=s; while((*sp)=='0') { sp++; } strcpy(t,sp); strcpy(s,t);}
有啊~memmove