I'm wanting to load a known number of numbers into an array in C from a text file (.txt). The format would be:
"0,1,2,5,4"
I'm kinda new to C, can anyone recommend a way to load in the text file?
Cheers
|
I'm wanting to load a known number of numbers into an array in C from a text file (.txt). The format would be: "0,1,2,5,4" I'm kinda new to C, can anyone recommend a way to load in the text file? Cheers |
|||
|
|
It can be done easily with
@pmg: Sure, why not. I just though if it is a hw, then it is a bad thing to give a complete solution :)
|
|||||||||||
|
|
You can: 1) Read one number at a time and convert to int using atoi() 2) You can read the whole array at once and using strtok to divide the number and after that convert with atoi() Here there is an example of strtok:
|
|||
|
|
|
how about strtok? |
|||||
|
|
Hy try this.
|
||||
|
|