Skip to content

Files

Latest commit

17178f5 · Dec 28, 2024

History

History

excel_in_c

Excel Engine in C

Trying to create a CLI application that accepts a CSV file as an input:

A|B
1|2
3|4
=A1+B2|=A2+A1

and produces an output CSV file:

A|B
1|2
3|4
5|4

Thus, a simplistic Excel Engine without any UI.