#include
#include
struct book
{
char name[20];
int nop;
char author[20];
};
main()
{
struct book *p,**q;
clrscr();
q=&p;
cout<>(*p).name;
cout<>p->nop;
cout<>(*p).author;
cout<<"nThe entered information is ";
cout<<"nNamettNumber of pagesttAuthor's Name";
cout<<"n"<<(*p).name<<"tt"<<(*p).nop<<"ttt"
<<(*p).author;
getch();