gpt4 book ai didi

c++ - C4473 结构分配警告

转载 作者:太空宇宙 更新时间:2023-11-04 15:36:07 25 4
gpt4 key购买 nike

我目前正在做一项作业,很好奇编译时这个警告是什么以及如何补救。它会构建,但当我调试时会出现错误屏幕。下面是出现的警告。

1>c:\users\cesteves\documents\c programming\inventory\inventory\inventory.cpp(48): warning C4473: 'scanf_s' : not enough arguments passed for format string

note: placeholders and their parameters expect 2 variadic arguments, but 1 were provided

note: the missing variadic argument 2 is required by format string '%s' note: this argument is used as a buffer size

#include "stdafx.h"
#include <stdio.h>

void main()
{
struct date {
int day;
int month;
int year;
};

struct details {
char name[20];
int price;
int code;
int qty;
struct date mfg;
};

struct details item[50];
int n, i;

printf("Enter number of items:");
scanf_s("%d", &n);

for (i = 0; i < n; i++) {
printf("Item name: \n");
scanf_s("%s", item[i].name);
printf("Item code: \n");
scanf_s("%d", &item[i].code);
printf("Quantity: \n");
scanf_s("%d", &item[i].qty);
printf("price: \n");
scanf_s("%d", &item[i].price);
printf("Manufacturing date(dd-mm-yyyy): \n");
scanf_s("%d-%d-%d", &item[i].mfg.day, &item[i].mfg.month, &item[i].mfg.year);
}

printf(" ***** INVENTORY ***** \n");
printf("----------------------------------------------------------------- - \n");
printf("S.N.| NAME | CODE | QUANTITY | PRICE| MFG.DATE \n");
printf("----------------------------------------------------------------- - \n");

for (i = 0; i < n; i++)
printf("%d %-15s %-d %-5d %-5d%d / %d / %d \n", i + 1, item[i].name, item[i].code, item[i].qty,item[i].price, item[i].mfg.day, item[i].mfg.month,item[i].mfg.year);
printf("----------------------------------------------------------------- - \n");
}

最佳答案

您应该提供缓冲区的大小。例如,如果你只读取一个字符,它应该是这样的:

char c;
scanf_s("%c", &c, 1);

请阅读ref !

此外,structs 很适合放在 main() 之前。我总是有我的 example牢记结构的基本用法。

在您的例子中,main 的原型(prototype)应该是 int main(void)。检查这个:int main() vs void main() in C


在你的代码中,改变这个:

scanf_s("%s", item[i].name);

为此:

scanf_s("%s", item[i].name, 20);

因为这个:

struct details {
char name[20];
..

对其余的做同样的..

关于c++ - C4473 结构分配警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33462802/

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