Is it possible to include variables through using %c and such when you have strings saved into the array?
char *MainMenuNames[] = { "%c - Move Left", "%c - Move Right","%c - Move Up","%c - Move Down","%c - Back","%c - Confirm","%c - Show Stats","%c - Show Inventory","%c - Show Legend","%c - Show Controls"};
When I have something like this, is it possible to put something into the %c?
sprintf, maybe?printffamily of functions does. printf itself prints to stdout, but you can print to a file, or even just assemble a string withsnprintfand do with it what you like.