|
|
|
|
|
by kinkrtyavimoodh
3255 days ago
|
|
It's syntactic sugar in the sense that arr[i] is just shorthand for *(arr+i) There's no abstraction or 'concept' of arrays there. You are literally just telling the compiler to take a certain pointer and move i steps ahead. |
|