In C, why can't I write:
char **expectedPINs01 = { "0", "5", "7", "8", "9" };
Cause I got:
warning: initialization of ‘char **’ from incompatible pointer type ‘char *’
But it is possible to write:
char *expectedPINs01[] = { "0", "5", "7", "8", "9" };
What's the difference?