Okay so I am making a program using a custom #define file that I have constructed.
The define file contains a bunch of questions in the form of:
1 2
#define QUESTION_1 "The hash (#) is a directive for what?
#define QUESTION_2 "CTRL-* will kill an infinitely looping program.
What I am having a lot of trouble wrapping my head on how to accomplish is how I can have my program randomly generate one of the "QUESTION_X" definitions. I've tried sticking variables where the number would go, but to no success.
I know the define function can be a pain to work with because C treats them as so precious...