How can I import .csv file in c language and then manipulate the data accordingly. Like finding out mean of dataset ,finding median etc.
Asked
Active
Viewed 62 times
0
-
Probably duplicate, [check this.](https://stackoverflow.com/a/12911465/8784431) – luke Nov 03 '18 at 20:39
1 Answers
0
You can read file as text file. Separate columns by ',' and create arrays. Then you can do whatever you want with your arrays.

110mat110
- 564
- 6
- 26