C4473 结构分配警告

C4473 warning for structure assignment

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

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() 之前很好。关于 structs.

的基本用法,我始终牢记 example

main 的原型在你的例子中应该是 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];
  ..  

其余的也一样..

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

scanf_s 要求的大小作为第三个参数,带有说明符 %s%c%[

你需要这样写-

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

类似,对于输入单个字符,将 1 作为大小。