Файловая переменная называется FILE
Чтобы открыть файл, используйте fopen()
Чтение и запись выполняются с fgets()
и fputs()
Это все в stdio.h
.
* * Пример тысяча двадцать-один: * * 1 022
#include <stdio.h>
int main(){
FILE *input = fopen("file.txt", "r");
char text[100]; // Where we'll put our text we read
fgets(text, 100, input); // Get up to 100 chars, stops at the first newline
puts(text); // In your example, this should print out "12 1"
fgets(text, 100, input); // Get the next up to 100 chars
puts(text); // Prints "12 3"
return 0;
}
Дайте мне знать, если что-то не так с кодом, у меня нет с собой компилятора C.