char array[2] = {'1', 0 };
std::cout << array;
Why does it output the contents and not the memory adress, aren't arrays pointers ?
char array[2] = {'1', 0 };
std::cout << array;
Why does it output the contents and not the memory adress, aren't arrays pointers ?