What error is there in my C header file?

I'm currently programming in C for a university project. Specifically, it involves various tours that are to be implemented with their own structures and nodes. For this, I've predefined the structures in the file tours.h. This is the file: #ifndef TOUR_H

#define TOUR_H

typedef struct island{

char island_name[20];

char opening_hours[20];

}Iceland;

typedef struct Node{

Iceland island;

struct Node *next;

struct Node *prev;

}Node;

typedef struct tour{

int tournumber;

Node *start;

}Tour;

#endif

I have the following problem: the file tours.h is included in the file tours.c with the command #include "tours.h" in order to use the definitions in the header file. The compiler gives me the following error:

1 user-submitted files matching "^[a-zA-Z0-9_]*\.[cC]$" found for compilation: tours.c

Compiler output:

 In file included from node.c:9: node.h:11:10: fatal error: island.h: No such file or directory #include "island.h" ^~~~~~~~~~ compilation terminated.

I don't understand where the error lies, since I never included an island.h file, but rather included them alongside stdio, stdlib, and string.h. There's also no file named node.h or node.c. Where is the error?

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
20 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
KarlRanseierIII
8 months ago
#ifndef TOUR_H
#define TOUR_H
typedef struct island{
   char island_name[20];
   char opening_hours[20];
}Island;

typedef struct Node{
   Island island;
   struct Node *next;
   struct Node *prev;
}Node;

typedef struct tour{
   int tournumber;
   Node *start;
}Tour;

#endif 

Oh, shit formatting.

Are the files in the same directory?

verreisterNutzer
8 months ago

Yes, they are. We need to upload the files and they will be automatically checked by a compiler. Maybe there’s the mistake?

KarlRanseierIII
8 months ago

Well possible if everything works locally, then you should check the upload process again, will nen archive be uploaded? Are there any requirements for the directory structure or the like?

In addition to the error message, is the actual call of the compiler reproduced? This would be interesting for other flags, as there are also different language standards.

verreisterNutzer
8 months ago

All right, thanks. Then I’ll ask that in the next time

KarlRanseierIII
8 months ago

This looks almost as if there were a predetermined node.h, node.c etc. – or as if there were several files thrown together.

verreisterNutzer
8 months ago

Have added an image above again from the attempt with empty island.h. The message is gone, another error appears

KarlRanseierIII
8 months ago

Well, the error message is that the HEader node.h, which is included by node.c, includes the unexisting island.h.

If you had this nei so that the nciht can be like nen Cruft, please look again into the task of whether it is explicitly required that typedefs should always be in HEader with the same name or the like.

If there were other ways to get on track would be an empty island.h with upload and see what happens.

verreisterNutzer
8 months ago

No, I didn’t have a node.h. I never defined and never included.Hab yes defined the nodes in the.h tours. The task does not specify how to name files and headers

verreisterNutzer
8 months ago

Have uploaded the exact error as picture. The error is always displayed, even if the C-File does not contain any Includes at all

KarlRanseierIII
8 months ago

Sagmal, node.h is also mentioned in the error message.

Did you have a node.h?

Or does the task require that these files should contain the corresponding typedefs?

KarlRanseierIII
8 months ago

And you say there are keien island.h udn You don’t include them? Then it must happen indirectly…

Upload a stripped C-file that doesn’t include anything in your HEader, using only the Sys-Includes.

If the error is then reproducible, it becomes interesting.

verreisterNutzer
8 months ago

I just packed the type definitions from the header file directly into the tours.c and he still gives the same error

verreisterNutzer
8 months ago

I’ve never had any problems with this: the principle is so, you can upload all the files individually and then everything should go. The compiler then checks and gives red or green light

ultrarunner
8 months ago

I made a tour.c and included your tour.h. I can compile it without mistake.

(Compiler: gcc)

verreisterNutzer
8 months ago
Reply to  ultrarunner

Can I send you the whole code? would be very cool if you could look over it

ultrarunner
8 months ago

I compiled it now. It works without any problems, and the program also works.

Please enter a tour number (1-4)or enter 0 for exit the program: 1
---------------------------------------------------
---------------- Tour 1 ---------------------------
---------------------------------------------------
---------------------------------------------------
Island : Amity
Opening hours: 09:00 - 17:00
---------------------------------------------------
Island : Craggy
Opening hours: 09:00 - 16:00
---------------------------------------------------
Island : Isla Nubar
Opening hours: 07:00 - 12:00
---------------------------------------------------
Island : Amity
Opening hours: 09:00 - 17:00
---------------------------------------------------
 End

verreisterNutzer
8 months ago
Reply to  ultrarunner

services.h

#ifndef TOURH

#define TOUR_H

typedef struct island{

char island_name[20];

char opening_hours[20];

Iceland;

typedef struct Node{

Iceland island;

struct Node *next;

struct Node *prev;

}Node;

typedef struct tour{

int tournumber;

Node *start;

tour;

Node *Create_Node(Island island);

void addNode(Tour *tour, Island island);

void islanddata(Island islands[ ]);

void tourdata(Tour tours[ ], Island islands[ ]);

void printtable(tour tour);

#endif

verreisterNutzer
8 months ago
Reply to  ultrarunner

tours.c

#include

#include

#include

#include “tours.h”

int main(void){

int tournumber;

Iceland [5 islands];

islanddata(islands);

Tour [4]= {0,NULL},{0 tours,NULL},{0,NULL},{0,NULL}};

tourdata(tours,islands);

printf(“Please enter a tour number (1-4)or enter 0 for exit the program: “);

scanf(“%d”,&tournumber);

if(tournumber == 0){

return 0;

}

if(tournumber >=1 && tournumber <=4){

printtable(tours[(tournumber-1));

}

printf(“Invalid input”);

}

return EXIT_SUCCESS;

}

Node *Create_Node(Island island){

Node *newNode = (Node*)malloc(sizeof(Node);

newNode->island= island;

newNode->next= NULL;

newNode->prev= NULL;

return newNode;

}

void addNode(Tour *tour, Island island){

Node *newNode= Create_Node(island);

if(tour->start ==NULL){

tour->start= newNode;

}

Node *temp = tour->start;

while (temp->next !=NULL){

temp= temp->next;

}

temp->next= newNode;

newNode->prev= temp;

}

}

void islanddata(Island islands[]){

strcpy(islands[0].island_name,”Amity”);

strcpy(islands[0].opening_hours,”09:00 – 17:00″);

strcpy(islands[1].island_name,”Craggy”);

strcpy(islands[1].opening_hours,”09:00 – 16:00″);

strcpy(islands[2].island_name,”Isla Nubar”);

strcpy(islands[2].opening_hours,”07:00 – 12:00″);

strcpy(islands[3].island_name,”Shutter”);

strcpy(islands[3].opening_hours,”08:00 – 20:00″);

strcpy(islands[4].island_name,”Skull”);

strcpy(islands[4].opening_hours,”08:00 – 17:30″);

}

void tourdata(Tour tours[], Island islands[]){

tours[0].tournumber= 1;

addNode(&tours[0],islands[0]);

addNode(&tours[0],islands[1]);

addNode(&tours[0],islands[2];

addNode(&tours[0],islands[0]);

tours[1].tournumber= 2

addNode(&tours[1],islands[4];

addNode(&tours[1],islands[1];

addNode(&tours[1],islands[2];

addNode(&tours[1],islands[4];

tours[2].tournumber= 3;

addNode(&tours[2],islands[3];

addNode(&tours[2],islands[4];

addNode(&tours[2],islands[3];

tours[3].tournumber= 4;

addNode(&tours[3],islands[2];

addNode(&tours[3],islands[4]);

addNode(&tours[3],islands[3];

addNode(&tours[3],islands[0]);

addNode(&tours[3],islands[2];

}

void printtable(Tour tour){

a.

printf(“————- Tour %d ———————————\n”,tournumber);

a.

Node *current= tour.start;

while(current!= NULL){

a.

printf(‘Island : %s\n’, current->island.island_name’);

printf(“Opening hours: %s\n”,current->island.opening_hours);

current= current->next;

}

a.

printf(” End\n”);

}

verreisterNutzer
8 months ago
Reply to  ultrarunner

Error message: 1 user-submitted files matching “^[a-zA-Z0-9_]*\.[cC]$” found for compilation:.c

Compiler output:

In file included from node.c:9:
node.h:11:10: fatal error: island.h: No such file or directory
 #include "island.h"
          ^~~~~~~~~~
compilation terminated.
verreisterNutzer
8 months ago

Thanks to you, you can explain to yourself where the mistake with the compiler comes from