Hi everybody, I was hoping to introduce myself and get some advice.
I was assigned to create an app using Visual C++ for my CS161 class, and I'm still fairly new to the language in general. The app I've decided to create will run the user through drills designed to increase reading speed and retention (a sort of bare-bones speed reading training program, if that makes sense)
The way it will work is as follows. First the user will be prompted by the program to select a level of difficulty. Based on the number entered, the computer will display a series of randomly generated strings of letters, four characters in length. It'll look a little something like this
[Enter Level: 6
fdsa irju kklo mnpp wqas zzxl
The letters will only be visible for one second, and a prompt will ask the user to type in the letters exactly. So I need an object that will generate a series of four character 'words' and will store them long enough for someone to type them back in. I was wondering what the most efficient means would be of carrying this out. Any help you guys could give me would be awesome.