将输入输入到int数组时发出警告

时间:2013-09-28 06:05:39

标签: c

int array[100], i;

for(i = 0; i < 100; i++)
{
  scanf("%d", &array[i]);
}

这给了我以下警告

warning: format ‘%d’ expects argument of type ‘int *’, but argument 2 has type ‘int’ [-Wformat] 

修改

Actual code

#include<stdio.h>
#include<stdlib.h>
void main()
{
  int array[100], n, j, ctr = 0, flag = 0;
#define FIX(i) ((array[i]==i)?1:0)
#define CHECK(i,num) ((array[i]==num)&&(array[num]==i)?1:0)
  scanf("%d", n);
  printf("\n");
  for (j = 0; j < n; j++)
  {
    scanf("%d", &array[j]);
    if (array[j] >= n)
    {
      printf("out of range\n");
      return;
    }
    else
    {
      if (FIX(j) == 1)
        ctr++;
      else if ((array[j] < j) && ((CHECK(j,array[j])) == 1) && (flag == 0))
      {
        ctr = ctr + 2;
        flag = 1;
      }
    } //end if
  } //end loop

}

2 个答案:

答案 0 :(得分:10)

因此基于您的actual code

修正:

scanf("%d",&n);
           ^ Use ampersand sign

您需要使用变量

的地址

答案 1 :(得分:0)

要输入任何变量,必须使用“&amp;”运算符以获取分配给该内存地址的输入。因此,在您的程序中,您应该将scanf(“%d”,n)更改为scanf(“%d”,&amp; n)。这意味着您要将整数类型数据分配给整数类型的内存地址。