I would like to take an array of strings in a macro. Firstly: is that possible?
IF yes, can I call them one by one based on the index, when I am using them?
Something like this:
#define VAR "abc", "def", "xyz"
Then when i want to use "def" somewhere,
FUNC(VAR[1]);