❶ C語言查文件中數據的個數
//---------------------------------------------------------------------------
#include <stdio.h>
int main(void)
{
int a,cnt=0;
FILE *fp=fopen("c:\\1.txt","r");
while (fscanf(fp,"%d",&a)!源=EOF) /*統計c:\1.txt文件中有多少個整數*/
++cnt;
fclose(fp);
printf("%d\n",cnt); /*輸出文件中的整數個數*/
return 0;
}
//---------------------------------------------------------------------------
❷ 如何用c語言來統計一個目錄中文件的個數
樓主你好
具體代碼如下:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define N 40
int main()
{
int i,count = 0;
char *cSource,*cSearch;
FILE *fp;
cSource = (char *)malloc(N * sizeof(char));
cSearch = (char *)malloc(3 * sizeof(char));
if((fp = fopen("word.txt", "r")) == NULL)
{
printf("文件打開失敗!\n");
exit(0);
}
printf("輸入統計的漢字:");
scanf("%s", cSearch);
fgets(cSource, N, fp);
for(i = 0; i < (int)strlen(cSource); i++)
{
if(cSource[i] == cSearch[0] && cSource[i+1] == cSearch[1])
//一個漢字占兩個位元組 所以需要判斷兩個位元組的內容
count++;
}
printf("%d\n", count);
return 0;
}
如果word.txt中包含的內容為:你好嗎 你 你
輸入:你
輸出:3
希望能幫助你哈
❸ 關於C語言中,如何能夠知道文件中,結構體數據塊的個數。
可以通過ReadFile函數讀取你的文件,它有一個參數就是返回實際讀了多少個位元組的數據,然後除以你的sizeof(struct),就可以了 試試看