I was looking at this struct tutorial.
https://www.tutorialspoint.com/cprogramming/c_structures.htm
It mentions "The structure tag is optional". How would you refer to your struct if there is no structure tag?
struct {
char title[50];
char author[50];
char subject[100];
int book_id;
};
//something like this?
struct random_name;