0

How can I import .csv file in c language and then manipulate the data accordingly. Like finding out mean of dataset ,finding median etc.

Tim Williams
  • 154,628
  • 8
  • 97
  • 125

1 Answers1

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