• 2022-06-16
    删除字符串的所有前导空格,请完善程序。 #include void f1(char *s) { char *t; t= ________ ; while(*s==) s++; while(*t++=*s++); } int main( ) { char str[80]; gets(str); f1(str); puts(str); return 0; } 得分/总分