文件io-“生成错误”错误-1073741819-C



我的任务是从Boggle游戏中获取每个骰子的所有可能字母的数据文件。这是数据文件的副本:

   D R L X E I
   C P O H S A
   N H N L Z R
   W T O O T A
   I O S S E T 
   N W E G H E
   B O O J A B
   U I E N E S
   P S A F K F
   I U N H M Qu
   Y R D V E L
   V E H W H R
   I O T M U C
   T Y E L T R
   S T I T Y D
   A G A E E N

每个骰子取6个字母,这些字母存储在一个链表中。当我尝试运行以下代码时,我一直得到一个错误代码:C:Dev-CppMakefile.win [Build Error] [Untitled1.o] Error -1073741819

我尝试过使用3种不同的IDE,但似乎总是遇到一些编译问题。我似乎不知道哪里出了问题!无论如何,这还没有完成,但在我不断深入之前,我宁愿弄清楚这一点。提前感谢!

代码

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

#define LENGTH 80
struct boggleDataNode{
       char data[3];
       struct boggleDataNode *nextData;
}*head;
struct boggleDieSideNode{
       char dieSideData[3];
       struct boggleDieSideNode *nextSide;
}*head1;
void readData(struct boggleDataNode temp);
int main(){
    int counter = 0;
    struct boggleDataNode *head;
    struct boggleDieSideNode *head1;
    struct boggleDataNode *temp;
    *head = NULL;
    *head1 = NULL;
    *temp = *head;
    readData(*temp);

    system("pause");
    return 0;
}
void readData(struct boggleDataNode temp){
    //initializing variables including
    //opening the input file
    FILE *input = fopen("BoggleData.txt","r");
    int name =0; 
    int id=0;
    char data[96] ={};
    //error checking that the file opened
    if (input == NULL){
        fprintf(stderr, "Can't open input file!n");
        exit(1);
    }
    while( fscanf(input, "%s", &data) != EOF)
           printf("%s", data);
}

在代码中,更改

struct boggleDataNode{
       char data[3];
       struct boggleDataNode *nextData;
}*head;

struct boggleDataNode{
       char data[3];
       struct boggleDataNode *nextData;
};

因为看起来你根本不需要一个全局指针。根据您的使用情况,它将被本地head遮蔽。

head1也是如此。

接下来,将NULL分配给指针本身,而不是它指向的变量。(FWIW,NULL本身是一个指针,不过是一个无效的指针)。

更改

*head = NULL;

head = NULL;

无论程序逻辑中的其他内容是错误的,中也存在语法错误

 char data[96] ={};

因为ISO C禁止空数组初始化程序。如果您的构建因此而中断,它可能会解释"构建错误"。如果您想将数据初始化为零,只需一个= { 0 }即可。

通过添加适当的选项来提高编译器的警告级别也是一个好主意。这是什么系统?哪个编译器?

尝试从"&data"中删除"与"符号,因为我认为您正在尝试读取字符串,所以请传递字符串,而不是direccion。

 while( fscanf(input, "%s", &data) != EOF)
       printf("%s", data);

所以你会有这个:

  while( fscanf(input, "%s", data) != EOF)
       printf("%s", data);

强烈建议在编译时启用所有警告,然后修复这些警告。毕竟,编译器比我们人类更了解这种语言。

以下代码

1) 编译干净,

2) 有不需要的项目被注释掉或#if 0…#endif out

3) 检查输入错误

4) 使用"perror()"正确输出系统函数错误信息包括与当前"errno"值相关的消息

5) 在所有读取完成后关闭输入文件

6) 从输入文件中读取一个数字字符后,fscanf()将停止因为当遇到任何"空白"时,%s将停止。

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

//#define LENGTH 80
// Note: surround numeric #defines with parens to avoid text substituion errors
#define MAX_DATA_LEN (96)
#if 0
struct boggleDataNode
{
       char data[3];
       struct boggleDataNode *nextData;
};
#endif
#if 0
struct boggleDieSideNode
{
       char dieSideData[3];
       struct boggleDieSideNode *nextSide;
};
#endif

void readData( void );
int main( void )
{
    //int counter = 0;
    //struct boggleDataNode *head = NULL;
    //struct boggleDieSideNode *head1 = NULL;
    //struct boggleDataNode *temp = NULL;
    readData();

    system("pause");
    return 0;
} // end function: main

void readData()
{
    //initializing variables including
    //opening the input file
    //int name =0;
    //int id=0;
    char data[ MAX_DATA_LEN ];
    FILE *input = fopen("BoggleData.txt","r");
    //error checking that the file opened
    if (input == NULL)
    {
        perror("Can't open input file!n");
        exit(1);
    }
    // implied else, fopen successful
    while( 1 == fscanf(input, " %s", data)) // note: format string leading space to skip 'white space'
           printf("%s", data);
    fclose( input );
} // end function: readData

相关内容

  • 没有找到相关文章

最新更新