0

I have a CSV file and I want to extract the element in the first row and 3rd column. How might I go about doing this?

1 Answers1

0

I would load the CSV in a matrix and then take the relevant row/column; of course, you could ignore the non-relevant element while loading the CSV. How to do the aforementioned has already been answered e.g. How can I read and parse CSV files in C++?

Ringo_00
  • 57
  • 1
  • 10