You don't have an array of strings. You have an array of integers. Or an array of characters. Both of which have the values {1,2,3,4}.
An array of strings would look like:
char *something[4] = {"apple", "banana", "carnage", "delicious"};
You don't have an array of strings. You have an array of integers. Or an array of characters. Both of which have the values {1,2,3,4}.
An array of strings would look like:
char *something[4] = {"apple", "banana", "carnage", "delicious"};