#include<stdio.h>
struct Book
{
int price;
char title[20];
}
int main()
{
struct Book b1,b2;
printf("Enter book1 price:");
scanf("%d",&b1.price);
printf("Enter book1 title:");
scanf("%s",&b1.title);
printf("Enter book2 price:");
scanf("%d",&b2.price);
printf("Enter book2 title:");
scanf("%d",&b2.title);
printf("Book1 price:\nBook 1 title:\nBook2 price:\nBook2 title:",%d%s%d%s);