Code:/*===============================getdata===================================== Pre: SpData is oppened, Post: */ int getData(FILE* spData, char name[][MAX_COL], float difficulty[], float score[][SCORE]) { int i = 0; int j = 0; while (i < MAX && fscanf(spData,"%c", &name[i][j])!=EOF) { for( j = 1; j < MAX_COL; j++) { fscanf(spData,"%c",&name[i][j]); } fscanf(spData,"%f", difficulty[j]); for( j = 0; j < SCORE; j++) fscanf(spData,"%f", score[i][j]); i++; j++; } return i; }
KNIFE JACK 1.3 6.0 5.1 6.3 5.9 6.5
WILLIAMSON FLIP A 1.4 3.5 4.1 4.7 7.2 3.8
SOMMER TODD 1.2 8.0 9.1 8.1 9.3 9.0
SWAN MIKE 1.1 4.3 2.1 9.9 6.2 7.0
my file openned but doesnt print the data above out



1Likes
LinkBack URL
About LinkBacks


