Hey, how do you declare an array of strings using double pointer ?
I normally use
char* str[] = {"this", "works", "fine" ,"for", "me"};
But I want to know if there is a way of declaring array of strings using something like
char** str;
Please show me how to put values in it also, like in the example I stated above.