string array[] = "";
How am I able to assign a const char*
to an array? Is that the same as:
string array[] = {""};
?? That would make sense to me. However, this still doesn't work
int array[] = 5;
So what is the difference between them that it doesn't work for int
arrays?