This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// C/C++ Считывание целых чисел из файла и запись их в массив | |
#include <stdio.h> | |
int main() { | |
char str[128]; // Строка, в которую мы считаем данные из файла (максимальной длины 128) | |
FILE *file_ptr; // Указатель на файл, который будем считывать | |