fscanf()函數(shù)用于從文件中讀取格式化數(shù)據(jù)。它的使用方式如下:
int fscanf(FILE *stream, const char *format, ...);
其中,stream是指向文件的指針;format是一個(gè)格式化字符串,它指定了要讀取的數(shù)據(jù)的格式;…表示可變參數(shù),用于接收讀取的數(shù)據(jù)。
下面是一個(gè)例子,展示了fscanf()函數(shù)的使用:
#include <stdio.h>
int main() {
FILE *file = fopen("data.txt", "r");
if (file == NULL) {
printf("無(wú)法打開(kāi)文件\n");
return 1;
}
int num1, num2;
fscanf(file, "%d %d", &num1, &num2);
printf("讀取的數(shù)據(jù)為:%d %d\n", num1, num2);
fclose(file);
return 0;
}
以上代碼打開(kāi)了一個(gè)名為"data.txt"的文件,然后使用fscanf()函數(shù)從文件中讀取兩個(gè)整數(shù),并將它們存儲(chǔ)在變量num1和num2中,最后將讀取的數(shù)據(jù)打印出來(lái)。