Help creating table in C++

Hey Guys!

I was hoping somebody could help create dynamic tables.In this program a user could create a folder to store information (example: Amount of money, Account Names, ect..)in and then have a table created to help index the information properly (i guess a simple version of Excel) where the information is displayed in a table, but each topic of information is stored in it's own folder.

1.) Is this possible?
2.) How/where do I start?

Any help would be appreciated.
Last edited on
Look at std::map http://www.cplusplus.com/reference/stl/map/

Otherwise use arrays and come up with logic to sort them, a table is a multidimensional array essentially.

Topic archived. No new replies allowed.