#include #include void main() { struct oz { char actor[30]; char character[30]; int age; }; struct oz actor; strcpy(actor.actor,"Judy Garland"); strcpy(actor.character,"Dorothy"); actor.age = 17; puts("Wizard of Oz Database!"); printf("%s played %s, and was %i-years-old\n",\ actor.actor,actor.character,actor.age); }