// Pantea Aria // Imagine you are designing a program for a small library system. // Each book has an ID number (an int), // a price (a double), // and a category (a char) that tells you whether the book is // fiction ('F'), // non-fiction ('N'), // or a textbook ('T'). // Write a program to store the information of one book: // "C Programming Basics", which is a textbook with ID 1091 and costs 59.99. // define your new type - only declaration // struct book // we have not declared a variable of type struct book yet #include int main(void) { }