char* names[]={\"A\", \"B\", \"C\"};
Is there a way to find the number of strings in the array. Like, for example in this case, it has to be 3. Ple
int count = sizeof(names)/sizeof(*names);
This takes the total size of names and divides it by the size of one element in names, resulting in 3.
names