gpt4 book ai didi

c - Scanf 编译错误;我需要了解编译此程序时发生的错误

转载 作者:行者123 更新时间:2023-11-30 18:23:38 26 4
gpt4 key购买 nike

#include<stdio.h>
#define N 16
int main(void)
{
int borrow=0;
int radix=2;
int i=0;
int x[N]={0};
int y[N]={0};
int di[N]={0};
int hex1;
int hex2;
int j;

scanf("%i,%i,&hex1,&hex2");

//error: warning: format ‘%i’ expects a matching ‘int *’ argument [-Wformat=]

scanf("%i,%i,&hex1,&hex2");//
^

//error2:format ‘%i’ expects a matching ‘int *’ argument [-Wformat=]

scanf("%i,%i,&hex1,&hex2");//
^
}

最佳答案

您的 " 应该在您拥有变量之前关闭,然后是逗号,然后是变量。

scanf("%i %i",&hex1,&hex2);

关于c - Scanf 编译错误;我需要了解编译此程序时发生的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52330083/

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