#include<stdio.h>
int main()
{
int i;
typedef struct BookDB
{
int iPageNo[10];
char cBookName[10];
} b1[5],*b2;
// *pvBookDB = &vBookDB;
b2 = &b1;
printf("Enter the pageno folloed by bookname for 5 books at at time");
for(i=0;i<=5;i++)
{
scanf("%d,%s",b2[i].iPageNo,b2[i].cBookName);
}
for(i=0;i<=5;i++)
{
printf("%d,%s",b2[i]->iPageNo,b2[i]->cBookName);
}
return 0;
}
srinidelite -4 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.