我想从fgets输出修剪换行符.
while(fgets(buff,1024,fp) ){ printf("start%send",buff );
如果文件中有一行"C很酷".然后打印上面的代码.
startC is cool end
但我希望它打印出来
startC is coolend
怎么做
干净的方法
#include //... buff [ strcspn(buff, "\r\n") ] = 0;
这将安全地用于任何行结尾的风格,即使没有,也是如此,即使字符串是空的.