File does not open in C -
file not show when enter want doesn't give me error. the file is: account name balance 100 jones 24.98 200 doe 345.67 300 white 0.00 400 stone -42.16 500 rich 224.62 int main(void) { int account; char name[30]; float balance; int request; char singleline[150]; file * fpointer; fpointer = fopen("acc.txt","r"); while (!feof(fpointer)) { fgets(singleline, 150, fpointer); } if ((fpointer= fopen("acc.txt", "r"))==null) printf("file not opened\n"); else { printf("enter request\n" "1 - list accounts 0 balances\n" "2 - list accounts credit balances\n" "3 - list accounts debit balances\n" "4 - endof run\n"); scanf("%d", &request); while (request !=4) { fscanf(fpointer,"%d%s...