怎樣取出二維數(shù)組中的每個(gè)數(shù)據(jù)并對(duì)每個(gè)數(shù)據(jù)進(jìn)行處理?
1、用fgets函數(shù)可以讀取文件中某行的數(shù)據(jù),某列數(shù)據(jù)就必須一個(gè)一個(gè)讀入每行的第幾個(gè)字符,再存入到一個(gè)字符串當(dāng)中。2、例程:
#include<stdio.h>#include<string.h>void main(){ char a[100],b[100],c[100]; int i=3,j=4,k=0; //第三行,第四列 FILE *fp = fopen("data.txt","r")
; while(fgets(c,100,fp)){ //讀入每行數(shù)據(jù) i--; if(i==0) strcpy(a,c)
; //讀到第三行數(shù)據(jù) b[k++]=c[j-1]
; //把每行的那列字符拷到b中 } b[k]=0; printf("第%d行數(shù)據(jù):%s\n",i,a)
; printf("第%d列數(shù)據(jù):%s\n",j,b); fclose(fp);}