只是想说清楚-我是C语言的初学者。
当我的程序运行时(使用Xcode),没有值对应于“resultfortran.txt”中的值。相反,它们变得非常小、非常大或零(看起来是随机的)。例如,变量n变为0,即使“resultfortran.txt”中的第一行是10。变量min和max也变得非常小(并且不能得到第2行和第3行的值)。
我整天上网,问我的同学们。如果感兴趣的话,我在打开文件的行上得到了错误“EXC_BAD_ACCESS”,但是这个错误有(一些是怎么发生的?)消失。是的,“resultfortran.txt2与main.m在同一个文件夹中。
程序的开始如下所示:

#include <assert.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <GLUT/glut.h>
#include <OpenGL/OpenGL.h>
#include <Cocoa/Cocoa.h>


static void draw( void )
{
int n,i,j;
float step,min,max,x,y,scaled;
float matrix[1000][1000];

FILE *fp; //reads input file
fp=fopen("resultfortran.txt", "r");
fscanf(fp,"%d",&n); //Gives n the value of the first line.
step=(1.0/n); //Defines step size
fscanf(fp,"%f",&min); //Gives min the value of the second line.
fscanf(fp,"%f",&max); //Gives max the value of the third line.

for (i=0;i<n+1;i=i+1)
{

    for (j=0;j<n+1;j=j+1)
    {
        fscanf(fp,"%f",&matrix[i][j]);
    }
}
... not finished here ...

文件“resultfortran.txt”(是fortran脚本的输出)的第一行如下所示:
10
0.00000000
0.500000000
0.0000000000
0.0025000002
0.0100000007
0.0225000009
0.0400000028
0.0625000000
0.0900000036
0.1224999949
0.1600000113
0.2024999857
0.2500000000
0.0025000002
0.0050000008
0.0125000002

最佳答案

既然你是“C语言的初学者”,我想首先欢迎你学习一门非常严谨但有收获的语言。不过,公平地说,我不认为编写操作系统代码的人是C语言的“初学者”。
我很乐意帮助你,并在我们继续的过程中更新这个答案。我的第一个建议是:
在执行文件操作(比如打开文件)时,首先要检查执行结果!例如,如果您在fopen()上阅读man page,您将看到fopen()
返回文件指针。否则,返回NULL,并将errno设置为
指出错误。
因此,请使用类似于下面代码的内容,以确保文件按预期打开:

if (fp == NULL) {
    printf("fopen did not work! Check errno %d\n", errno);
}
else {
    printf("fopen workd!\n");
}

一旦你告诉我实现上述代码的结果,我会更新这个答案。

关于c - C程序将无法访问纺织品,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36754042/

10-08 23:29