#include<stdio.h>
#include<conio.h>
#include<string.h>
struct books
{
char book_name[100];
char book_author[100];
int book_id;
};
void print(int j,book[j])
{
printf("The name of book %d is %s",j,book.book_name);
printf("\nThe author of book %d is %s",j,book.book_author);
printf("\nThe id of book %d is %d",j,book.book_id);
}
int main()
{
int b;
printf("Enter the number of books :");
scanf("%d",&b);
for(int i=1;i<=b;i++)
{
struct books book[i];
printf("Enter the details of book %d /n",i);
printf("Enter the book %d name:",i);
scanf("%s",&book[i].book_name);
printf("\n Enter the author of book %d :",i);
scanf("%s",&book[i].book_author);
printf("\n Enter the id of book %d :",i);
scanf("%d",&book[i].book_id);
}
printf("\n The details of the books you entered are given below:\n");
for(int j=1;j<=b;j++)
{
print(int j,book[j]);
}
getch();
return 0;
}
エラー: --> [エラー] 'book' は、印刷関数のこのスコープで宣言されていませんでした... 構造体オブジェクトのスコープをグローバルに変更するにはどうすればよいですか? ライブラリのような環境を作成し、構造を使用して本の名前とその詳細を出力していますが、作成されたオブジェクトはスコープを超えています。エラーログにあるように表示されます。問題を解決するのを手伝ってください。