码迷,mamicode.com
首页 > 编程语言 > 详细

C读txt到二维数组

时间:2014-12-18 18:52:15      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:二维数组   printf   

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


#define maxn 200
void main()
{
  FILE *fp;
  int s[maxn][maxn];
  int i,j;
  if((fp=fopen("d:\\temp\\test.txt","r"))==NULL)
  {  
  printf(" can't open");
  exit(0);
  }


  
  for(i=0;i<maxn;i++)
  {
  for(j=0;j<maxn;j++)
  {
  fscanf(fp,"%d",&s[i][j]);
  }
  }
    
}

转载请注明:小刘

C读txt到二维数组

标签:二维数组   printf   

原文地址:http://blog.csdn.net/u013018721/article/details/42008201

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!