标签:style blog color io ar div line log
/* * remove space, tab and enter(new line) of file * usage : ./rmspace < oldFile > newFile */ #include<stdio.h> int main() { int c,i=0; while((c=getchar())!=EOF) { if(c==‘ ‘||c==‘\t‘||c==‘\n‘) { i++; if(i==1) { printf("%c",‘ ‘); } }else{ printf("%c",c); i=0; } } }
标签:style blog color io ar div line log
原文地址:http://www.cnblogs.com/laoquans/p/3915981.html