Pages • 0
Declaring a Structure Globally So That It Is Available Throughout the Program Structure1.cpp#include #include #include #include // Declaring a Structure globally so that it is available throughout the program.struct book{ char title[20]; // Attribute of the structure book. char author[20]; // Attribute of the structure book. int edition; // Attribute of the structure book. char isbn[14]; // Attribute of.