read/write linked lists to file
The solution for “read/write linked lists to file” can be found here. The following code will assist you in solving the problem.
#include
#include
typedef struct Node {
char name[50];
int age;
struct Node *next;
}Node;
// user-defined functions
void printPetRecord(Node *head);
void writeToFile(FILE *fptr, Node *head);
// main()
int main(void)
{
int count, i;
Node *petRecord, *newRecord;
FILE *fp;
if( (petRecord = malloc(sizeof(Node))) == NULL )
{
fprintf(stderr, “Unable to allocate memory.\n”);
exit(2);
}
newRecord = petRecord;
printf(“How many pets do you have? “);
scanf(“%d”, &count);
for(i = 0; i < count; i++)
{
printf("Name of Pet: ");
scanf("%50s", newRecord->name);
printf(“Age of Pet: “);
scanf(“%d”, &newRecord->age);
if(i == count-1)
{
newRecord->next = NULL;
}
else
{
if( (newRecord->next = malloc(sizeof(Node))) == NULL)
{
fprintf(stderr, “Memory Unavailable.\n”);
exit(3);
}
}
newRecord = newRecord->next;
}
printf(“\n\n”);
// Modified arguments
printPetRecord(petRecord);
// Open file before sending to writeToFile
if(!(fp = fopen(“petname.txt”, “w”)))
{
fprintf(stderr, “Unable to open file \”petname.txt\”\n”);
exit(1);
}
// Modified arguments
writeToFile(fp, petRecord);
fclose(fp);
return 0;
}
// function to print linked_list
void printPetRecord(Node *head)
{
if(head->next != NULL)
{
printf(“Name of Pet: %s\nAge of Pet: %d\n”, head->name, head->age);
printPetRecord(head->next);
}
else
printf(“Name of Pet: %s\nAge of Pet: %d\n”, head->name, head->age);
}
// function to print list to file
void writeToFile(FILE *fptr, Node *head)
{
if(head->next != NULL)
{
fprintf(fptr, “\nPet Name: %s\nAge: %d\n\n”, head->name, head->age);
writeToFile(fptr, head->next);
}
else
fprintf(fptr, “\nPet Name: %s\nAge: %d\n\n”, head->name, head->age);
}
More questions on [categories-list]
- tss from gene granges
- ixl ansers ixl ansers
- get coin prices node-binance
- how to setup netflix workflow worker
- spritesheets in pyqt spritesheets in pyqt
- cahokia mounds pictures cahokia mounds pictures cahokia mounds pictures
- python 2 decimal places how to get decimal part of a double in python set number of decimals python
- how to find nuber of tweets per day using python how to find nuber of tweets per day using python how to find nuber of tweets per day using python how to find nuber of tweets per day using python how to find nuber of tweets per day using python
- haskell get specific elements of a String
- vb net code snippets for storing password
- error TS2307: Cannot find module ‘@ngx-meta/core’.
- inline scripts encapsulated in tags