返回所遇到的第一个非空白字符这章的题,除了第一题是我自己做的外,其他的题都是求助后才做起的。。郁闷···
get_first(void){int ch;ch=getchar();while(getchar()!='\n')continue;return ch;}
get_first(void){int ch;while((ch = getchar())=='\n' || ch == ' ' || ch == '\t');return ch;}