0
如何將隨機訪問文件DATA.data中的記錄放入數組allRecs [10]中?如何將隨機訪問文件中的記錄放入C編程語言的數組中?
/*Reading a random access file and put records into an array*/
#include <stdio.h>
/* somestruct structure definition */
struct somestruct{
char namn[20];
int artNr;
}; /*end structure somestructure*/
int main (void) {
int i = 0;
FILE *file; /* DATA.dat file pointer */
/* create data with default information */
struct somestruct rec = {"", 0};
struct somestruct allRecs[10]; /*here we can store all the records from the file*/
/* opens the file; exits it file cannot be opened */
if((file = fopen("DATA.dat", "rb")) == NULL) {
printf("File couldn't be opened\n");
}
else {
printf("%-16s%-6s\n", "Name", "Number");
/* read all records from file (until eof) */
while (!feof(file)) {
fread(&rec, sizeof(struct somestruct), 1, file);
/* display record */
printf("%-16s%-6d\n", rec.namn, rec.artNr);
allRecs[i].namn = /* HOW TO PUT NAME FOR THIS RECORD IN THE STRUCTARRAY allRecs? */
allRecs[i].artNr = /* HOW TO PUT NUMBER FOR THIS RECORD IN THE STRUCTARRAY allRecs? */
i++;
}/* end while*/
fclose(file); /* close the file*/
}/* end else */
return 0;
}/* end main */
家庭作業?如果是這樣,請標記爲這樣。 – shank 2009-11-12 13:53:38