| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 13762 人关注过本帖
标题:程序运行错误 显示 “process exited with return value 3221225725”
取消只看楼主 加入收藏
zhht87
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2013-8-7
结帖率:57.14%
收藏
已结贴  问题点数:10 回复次数:0 
程序运行错误 显示 “process exited with return value 3221225725”
我编写了一个c语言程序,主要目的是将5m。txt 中存放的数据导入一个input 的结构体当中,5m.txt 为3列 1000000 行的数据, 编译显示没有问题,但是运行的时候每次都显示程序出现异常,用dev c++ 显示“process exited with return value 3221225725”.  搞不明白是什么情况, 之前我试过导入 100*100 的txt 文件 没有问题。 不知道是不是数据太大导致的。 请各位高手帮忙看一下,感激不尽。




struct convert
 {float C[3][3];};
  struct convert con[24]=
    {
        {1,0,0,0,1,0,0,0,1},
        {0,0,-1,0,-1,0,-1,0,0},
        {0,0,-1,0,1,0,1,0,0},
        {-1,0,0,0,1,0,0,0,-1},
        {0,0,1,0,1,0,-1,0,0},
        {1,0,0,0,0,-1,0,1,0},
        {1,0,0,0,-1,0,0,0,-1},
        {1,0,0,0,0,1,0,-1,0},
        {0,-1,0,1,0,0,0,0,1},
        {-1,0,0,0,-1,0,0,0,1},
        {0,1,0,-1,0,0,0,0,1},
        {0,0,1,1,0,0,0,1,0},
        {0,1,0,0,0,1,1,0,0},
        {0,0,-1,-1,0,0,0,1,0},
        {0,-1,0,0,0,1,-1,0,0},
        {0,1,0,0,0,-1,-1,0,0},
        {0,0,-1,1,0,0,0,-1,0},
        {0,0,1,-1,0,0,0,-1,0},
        {0,-1,0,0,0,-1,1,0,0},
        {0,1,0,1,0,0,0,0,-1},
        {-1,0,0,0,0,1,0,1,0},
        {0,0,1,0,-1,0,1,0,0},
        {0,-1,0,-1,0,0,0,0,-1},
        {-1,0,0,0,0,-1,0,-1,0},

    };


struct bccinput//定义输入数据使用的结构体,存储三个欧拉角
    {
     float a;
     float b;
     float c;
    };



int main()
{

 int X,Y,x,y,i=0;
 float fcc[3]={0,0,0},o,p,q,r,s,w,g,h,j;
 struct convert part[(mesh/sampling+1)*(mesh/sampling+1)];
 clock_t t = clock();
 struct bccinput input[Ymax+1][Xmax+1];


 FILE *in,*out;
    if((in=fopen("C:\\c program\\5m.txt","r"))==NULL)  //------------------------------------------------------需要输入导入文件的存放地址
    {printf("cannot open file");
     exit(0);
    }

    for(x=0;x<=Xmax;x++)
        for(y=0;y<=Ymax;y++)
        {fscanf(in,"%f %f %f",&input[y][x].a,&input[y][x].b,&input[y][x].c);
             printf("%f %f %f\n",input[y][x].a,input[y][x].b,input[y][x].c);
        }
    fclose(in);
}
搜索更多相关主题的帖子: 结构体 return convert process c语言程序 
2013-10-23 04:00
快速回复:程序运行错误 显示 “process exited with return value 3221225725”
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.061929 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved