How to read excel file using pure C?

As the name says, I have a task that I need to read data from excel files. I am wondering how to implement it in pure C, not C ++ or C #. By the way, I need to write and test the program on Linux, but others can use the code on Windows, which means that my code must be OS independent. Thank.

+5
source share
2 answers
+1
source

Excel language support in C is complex. You must be dependent on third libraries. But if you just wanted to follow the CSV format, you can write your own CSV parser.

0
source

All Articles