Tool/software:
I have a graphics package that to display a listbox requires an array of pointers to C strings to display in each row. The array of strings I'm displaying is created dynamically so I have an array of fixed length strings that I populate and then dynamically populate an array with the addresses of each of those strings:
char* pListBuff[Size];
char ListBuff[Size][charsPerString];
Since the addresses of each string in ListBuff is known at compile time, is there a way in the compiler to create: const char* pListBuff[Size]; ??
Thanks,
Doug