I am trying to build a list of strings that I need to pass to a function expecting char **
char **
How do I build this array? I want to pass in two options, each wi
char **options[2][100];
declares a size-2 array of size-100 arrays of pointers to pointers to char. You'll want to remove one *. You'll also want to put your string literals in double quotes.
char
*