I have a text file within text and numbers.
I must make a function that finds all numbers from the text file.
I opened a file now what?
FILE *fp;
if((fp=fopen("Text.txt","r"))==NULL) {
printf("No such file...\n");
}
|
I have a text file within text and numbers. I must make a function that finds all numbers from the text file. I opened a file now what?
|
|||||||||||||||||
|
|
I'm sure it is a homework, but you didn't tag it like one (so I did tag it) Define what is lexically a number for you (it is too imprecise). Then make a loop, reading line by line with e.g. Read more about lexing and automata based programming But I don't want to do all your homework. It is better for you to try understanding by yourself. |
|||
|
|
|
Open the first file for reading. Open another file for writing. Iterate over characters, determining whether each "word" is a number or not using Same could be done with just outputting, but that's not as interesting. EDIT: Basile Starynkevitch mentions that |
|||||||||
|