用sscanf格式警告

时间:2015-05-06 16:40:24

标签: c string fgets scanf

在尝试编写只允许数字字符串的程序时,我收到了以下警告:

warning: format ‘%s’ expects argument of type char *’, but argument 3 has type ‘char (*)[100]’

为什么我会收到此警告,这是什么意思/后果?运行代码没有任何问题。

该计划:

char check[100];
char line[100];
int i;
int true = 0;
int main
{
fgets(line, sizeof(line), stdin);
sscanf(line, "%s" , &check);
for(i=0; i<3; i++)
    {
    if(isdigit(check[i]) == 0)
        {
        true++;
        }
    else
        continue;
    }

if(true>0)
    printf("Not a number.\n");
else
    printf("Is a number.\n");
return(0);
}

1 个答案:

答案 0 :(得分:2)

编译器抱怨在以下行中使用&check

sscanf(line, "%s" , &check);

预期参数只是check

sscanf(line, "%s" , check);