I'm new to using C programming I was wondering if there is a function call that can be used to quickly determine the amount of rows in a text file.
|
|
|||
|
|||||||||
|
|
No. There is a standard Unix utility that does this though, |
|||
|
|
|
You have to write your own, and you have to be conscious of the formatting of the file... Do lines end with |
|||
|
|
|
No, theres not. You have to write your own. If the line-size if fixed, then you could use fseek and ftell to move to the end of the file and then calculate it. If not, you have to go through the file counting lines. Are you trying to create an array of lines? Something like
? |
|||
|