#include <stdio.h>
#include <string.h>
struct Books {
char title[50];
char author[50];
char subject[100];
int book_id;
};
/* function declaration */
void printBook( struct Books book );
int main( ) {
struct Books Book1; /* Declare Book1 of type Book */
struct Books Book2; /* Declare Book2 of type Book */
/* book 1 specification */
strcpy( Book1.title, C Programming);
strcpy( Book1.author, Nuha Ali);
strcpy( Book1.subject, C Programming Tutorial);
Book1.book_id = 6495407;
/* book 2 specification */
strcpy( Book2.title, Telecom Billing);
strcpy( Book2.author, Zara Ali);
strcpy( Book2.subject, Telecom Billing Tutorial);
Book2.book_id = 6495700;
/* print Book1 info */
printBook( Book1 );
/* Print Book2 info */
printBook( Book2 );
return 0;
}
void printBook( struct Books book ) {
printf( Book title : %s\n, book.title);
printf( Book author : %s\n, book.author);
printf( Book subject : %s\n, book.subject);
printf( Book book_id : %d\n, book.book_id);
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。