在C语言中,可以使用标准库函数来读取txt文件中的数字。以下是一个简单的示例代码,演示如何读取一个包含数字的txt文件:
#include <stdio.h>
int main() {
FILE *file;
file = fopen("numbers.txt", "r");
if (file == NULL) {
printf("Error opening file\n");
return 1;
}
int num;
while (fscanf(file, "%d", &num) != EOF) {
printf("%d\n", num);
}
fclose(file);
return 0;
}
在这个示例中,我们首先打开一个名为"numbers.txt"的文本文件,然后使用fscanf
函数来逐行读取文件中的数字并存储在变量num
中,然后打印出来。最后关闭文件。请确保文本文件中的每一行只包含一个数字,否则可能会导致读取错误。