hi, pls correct my error, thank
#include <stdio.h>
#include <string.h>
typedef enum
{
SF_Science_Fiction=0, HR_Horror=1, RM_Romance=2
} Category_Value;
typedef struct
{
char ISBN[10];
char Title[30];
char Author[30];
float Price;
Category_Value Category;
char...