使用函数fprint和int数组重写文件

时间:2015-10-28 12:34:14

标签: c arrays

我想用fprintf覆盖一个带有int数组内容的文件。这应该是一个非常简单的程序,但是,我没有得到预期的输出。请不要建议使用其他函数,因为这是一个单一的赋值,我们必须使用数组和fprintf。

因此,虽然我期待文件包含:

3 3 3 3 3 3 3 3 3 3 3 3 

我得到了:

1495894796 1495894796 1495894796 1495894796 1495894796 1495894796 
1495894796 1495894796 1495894796 1495894796 1495894796 1495894796

这个编译器警告:

  format specifies type 'int' but the argument has type 'int *' [-Wformat]

我不知道是什么导致了这个错误,因为我有一个非常相似的程序运行良好,但我使用了char数组,而函数fputc。

以下是我的代码的相关部分,如有必要,请随时询问完整代码:

    #include<stdio.h>
    #include<stdlib.h>

    #define ARRAY_ELEMENTS 13
    /* Defining the size of my int array */

    int main(){
      int i, aux;
      FILE *finformation
      int defined_array[ARRAY_ELEMENTS];

      i = 0;

      while (i < (ARRAY ELEMENTS - 1))
      {
          defined_array[i] = 3;
          i = i+1;
      }
      defined_array[i] = 999;
      /* This should initialize my int array with all the numbers
      being 3 but the last one being 999 */

      finformation = fopen("/Users/(path here)/file.txt", "w");
      /* I'm pretty sure I didn't screw up here because the file does
      get overwritten */

      i = 0;
      aux = defined_array[i];
      /* I want to read the first number in the int array 
      and store it in an int variable: aux. Here is where I've
      probably messed up things */

      while (aux != 999)
      {
          fprintf(finformation,"%d ", &aux);
          i = i+1;
          aux = defined_array[i];
      }
      /* While I don't read the last number in my int array (999), I  
      want to write the last read number into the file. Then, leave
      an space and repeat */

      fclose(finformation);
      return 0;
    }

2 个答案:

答案 0 :(得分:2)

移除&来电中aux前面的fprintf

只需使用

fprintf(finformation, "%d ", aux);

&正在将类型格式int更改为int*(指向整数的指针)。

答案 1 :(得分:2)

从语句

中删除&
fprintf(finformation,"%d ", &aux);  
                  //        ^ Remove & operator  

否则程序的行为将是未定义的。