Name of arrays are constant pointers
imagine I tried this and got an error
can you do this in c?
int a[] = {1, 2, 3, 4, 5};
a = a + 2;
No, you cannot do that in C.
The name of an array in C represents the address of its first element, and this address cannot be changed once the array h...
snowcodes.hashnode.dev1 min read