I want a simple C program, which will read a file and saves the content of each line to an array element. The file contains all the integer value. Only one integer value is present per line. In this way each of the integer value is to stored in an array.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Here is an example which does what you ask, with error checking, and dynamically resizing your array as more data is read in.
|
|||
|
|
|
There are many web resources to help you in this regard. a fast google search pointed me to this example which, beside the non dynamic nature of the example, does what you want with scanf. |
|||
|
|
fgetsandstrtol. – pmg Apr 6 '11 at 14:38