i am trying to make a database (of Spanish questions), but i have no clue on how to do this. Once i have a database, i will need help making a program that randomly selects questions from it. Any help would be well appreciated
1) Use SQL
a) You'll need a flavor of SQL installed
b) You'll need to write a connector class (or use the bare connector API)
c) You'll need to query the database for your question strings
2) Use a file
a) You'll need to come up with a format
b) You'll need to parse the file into tokens
c) You'll need to store the tokens for your question strings
I assume that you're doing this project in order to better learn C++. If that's the case, then try both ways and see which one you prefer.
I would go with option 1 and sqlite. If you don't know sql, you would be able to pick up enough to store/retrieve your questions in a few hours. The API of sqlite is very simple to use. and it doesn't need a server, you can just compile it into your executable.