Arrays in C

Sunday, November 30, 2008

http://www.brainbell.com/tutors/c/Advice_and_Warnings_for_C/Practical_Pointers.html

C's array notation is really just shorthand for pointer operations, and C lets you use either in most contexts. For example, if a is declared as an array, *(a+i), a[i], and i[a] mean exactly the same thing.

0 comments