How are the names of arrays stored in memory?
For example if I write:
char arr[10];
the array items are stored in memory starting f
The name of the array is lost when you compile it. It is only for reference. The elements are stored in stack but the array name is lost after compilation unless and until you dont have -g option in your debugging.