Pointer vs Array in C - GeeksforGeeks - GeeksforGeeks | A computer science portal for geeks
Most of the time, pointer and array accesses can be treated as acting the same, the major exceptions being: 1) the sizeof operator o sizeof(array) returns the amount of memory used by all elements in array o sizeof(pointer) only returns the amount of memo...