gpt4 book ai didi

C 警告 "format ' %d' 需要类型为 'int *' 的参数,但参数 2 的类型为 'int"

转载 作者:行者123 更新时间:2023-11-30 14:45:25 27 4
gpt4 key购买 nike

我想用一个字符串和一些数字填充这些数组,但似乎无法真正弄清楚为什么我不能。

#include <stdio.h>

struct students{
char name[30];
int points[10];
int absences[10];
};

int main()
{
int i, n;
printf("Declare the number of students: ");
scanf("%d", &n);

struct students stud[n];

for (i = 0; i < n; i++) {
printf("Name: ");
scanf("%s", &stud[i].name);
printf("Points: ");
scanf("%d", &stud[i].points);
printf("Absences: ");
scanf("%d", &stud[i].absences);
}


for( i = 0; i < n; i++)
{
printf("%s\n", stud[i].name);
printf("%d\n", stud[i].points);
printf("%d\n", stud[i].absences);

}


}

这是我收到的警告:

警告:格式“%s”需要“char ”类型的参数,但参数 2 的类型为“char ()[30]”[-Wformat=]

     scanf("%s", &stud[i].name);

feladat1.c:21:15:警告:格式“%d”需要“int ”类型的参数,但参数 2 的类型为“int ()[10]”[-Wformat= ]

     scanf("%d", &stud[i].points);

feladat1.c:23:15:警告:格式“%d”需要“int ”类型的参数,但参数 2 的类型为“int ()[10]”[-Wformat= ]

     scanf("%d", &stud[i].absences);

feladat1.c:30:16:警告:格式“%d”需要“int”类型的参数,但参数 2 的类型为“int *”[-Wformat=]

     printf("%d\n", stud[i].points);

feladat1.c:31:16:警告:格式“%d”需要“int”类型的参数,但参数 2 的类型为“int *”[-Wformat=]

     printf("%d\n", stud[i].absences);

最佳答案

  1. struct Students中,int point[10];应为int point;int Absences[10 ]; 应该是 int 缺勤;

  2. scanf("%s", &stud[i].name); 应该是 scanf("%s", Stud[i].name);

以下代码可以工作:

#include <stdio.h>
#include <stdlib.h>

struct students{
char name[30];
int points;
int absences;
};

int main()
{
int i, n;
printf("Declare the number of students: ");
scanf("%d", &n);

struct students *stud = malloc(sizeof(struct students) * n);

for (i = 0; i < n; i++) {
printf("Name: ");
scanf("%s", stud[i].name);
printf("Points: ");
scanf("%d", &stud[i].points);
printf("Absences: ");
scanf("%d", &stud[i].absences);
}


for( i = 0; i < n; i++)
{
printf("%s\n", stud[i].name);
printf("%d\n", stud[i].points);
printf("%d\n", stud[i].absences);

}
return 0;
}

关于C 警告 "format ' %d' 需要类型为 'int *' 的参数,但参数 2 的类型为 'int",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53071231/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com