本文介绍了如何检查文件中是否包含c中的字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想读一个文件是否包含任何caharactes。如果是这样,那么我将代码如果它的emty将 printf 我的消息和返回0;



如何使用C?

I want to read if a file contains any caharactes. If so then I will procide to code if its emty will printf me a message and return 0;.

How do I do that with C?

推荐答案


fscanf(fp,"%d",&num);                                                   // here goes the fscanf() command  ?Do I need to use fget()?

         fseek(fp, 0, SEEK_END);
            if (ftell(fp) == 0) {
            printf("file is emty");                                             // empty file
            }
            fseek(fp, 0, SEEK_SET);


这篇关于如何检查文件中是否包含c中的字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 23:29