在C中使用fprintf写入文件

时间:2018-10-20 19:53:43

标签: c scanf

我正在尝试在程序中写入文件,但是我不确定哪里出错了。

我可能错误地使用了fscanf,这很可能。

我需要将未解决的难题写到文件中,以查看是否正确地将文件放入了代码中,但是就像说的那样,我不确定我是否正确地使用了fscanf。 (拼图文件在我的Clionfile中,我知道不是问题所在。)

这是我用来阅读的程序部分。

int read(const char *name, int **problem, int **z, int *size) {
    int n;
    int *p;
    int *c;
    FILE* input;

    input = fopen("name", "r");
    fscanf(input,"%d", &n);

    *size = n;
    p = (int *)malloc(n * n * sizeof(int)); /* nxn grid has n*n elements*/
    c = (int *)malloc(n * n * sizeof(int));
    *problem = p;
    *z = c;

    input = fopen(name, "r");
    fprintf(input, "%d\n", n);
    fclose(input);
    return 0;
}

我需要知道的是哪里出了问题,或者我的问题是否出在这里。

1 个答案:

答案 0 :(得分:1)

我确实没有完全遵循您的代码,但是创建了一个可以编译并运行的版本。我添加了一些断言来显示我期望的值。我发现这些有助于确认我希望程序执行的操作。让我知道是否有帮助。

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


int ReadFile(const char *name, int **problem, int **z, int *size) {
    int n;
    int *p;
    int *c;
    FILE *input;
    FILE *output;

    /* Open file "name" for reading and writing */
    output = fopen(name, "w");
    assert(output != NULL);

    fprintf(output, "%d", *size);
    if(fclose(output) == EOF)
        perror ("fclose-input");

    /* Open file "name" for reading and writing */
    input = fopen(name, "r");
    assert(input != NULL);

    /* Get integer input from the file and store it in n. */
    fscanf(input, "%d", &n);
    assert(n == *size);
    if(fclose(input) == EOF)
        perror ("fclose-input");

    p = malloc(n * n * sizeof(int)); /* nxn grid has n*n elements*/
    c = malloc(n * n * sizeof(int));
    *problem = p;
    *z = c;

    input=fopen(name,"w");
    fprintf(input,"%d\n",n);
    if(fclose(input) == EOF)
        perror ("fclose-input");
    return 0 ;

}


int main() {
    int size = 5;
    int* problemIntPtr;
    int* zintPtr;

    ReadFile("name.txt", &problemIntPtr, &zintPtr, &size);
    printf("We made it!\n");
    return 0;
}