#include #include struct book { char title[25]; char author[25]; float cost; int pages; }; int main() { struct book cop3275_text = { "Programming in C", "Kochan, Stephen G", 39.99, 552 }; struct book ashes = { "Angelas Ashes", "Frank McCourt", 11.00, 368 }; printf( "%d\n", cop3275_text.pages ); printf( "%4.2f\n", ashes.cost ); printf( "%s\n", cop3275_text.author ); return 0; }