https://pastein.ru/t/yD

  скопируйте уникальную ссылку для отправки


#include "stdio.h"

#include "conio.h"

#define FNAME "test.txt\0" // имя файла

void main()

{

char fname[20] = FNAME;

FILE *f; // файл данных

// открытие для чтения

if ((f = fopen(fname, "rt")) == NULL)

{

printf("Error in file open operation! %s \n", fname);

getch();

return;

}

printf("\nContent of file is following:");

while (!feof(f))

{

fscanf(in, "%s", &st );

printf("%s\n", st);

}

fclose(f); // закрытие файла

getch();}