создавшего-структуру, которая показана ниже:нужно использовать таНос или calloc для выделения памяти для данных из текстового файла, который будет храниться и как проверять данные в файле
struct entry
{
int source[5];
int destination[5];
int type[5];
int port;
int data;
} record;
пользователь должен ввести имя файла и файлы должны быть проверены на определенные критерии, а затем сохранены, но я не уверен, как использовать функции malloc или calloc в моем коде, чтобы я мог это сделать. Также нужна помощь в том, как проверить текстовый файл. Фрагмент кода показан ниже:
int file()
{
FILE *inFile;
char inFileName[70]= {'\0'};
char data1[70];
char *token;
int x = 0;
int count = 0;
int length = 0;
printf("Enter File Name:");
scanf("%s", inFileName);
if ((inFile = fopen(inFileName, "r"))== NULL)
{
printf("Open failed:%s\n", inFileName);
exit(1);
}
if (inFile != NULL)
{
while (!feof (inFile)) // Read the whole file until the end of the file.
{
count ++;
printf("\n\nRecord:%i\n", count);
fgets(data1, sizeof data1, inFile); //fgets reads the first string from the "inFile" pointer and stores it in char "data" using the "sizeof" function to make sure strings are the same size.
token = strtok(data1, ":"); // the "token" pointer used with the "strtok" function to break down the "data" string into smaller tokens by using the delimiter ":"
record.source[5] = token;
printf("Source:%d\n", record.source);
ваш неправильно, вы хотите быть (feof (FP) == 0) – Bolboa