#include<stdio.h>
struct book{

int p,e;
char a[20],t[20];
}b1;
void main(){

printf("enter price and edition of book\n");
scanf("%d %d", &b1.p, &b1.e);

printf("enter author and name of book\n");
scanf("%s %s", b1.a, b1.t);

printf("the author name %s\n",b1.a);
printf("the book name %s\n",b1.t);
printf("the price name %d\n",b1.p);
printf("the edition name %d\n",b1.e);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: