previous | start | next

16. Comparison of Arrays and Pointer Variables

So what is the difference between an array a and a pointer p?

 int a[100];
 int *p;            
         


previous | start | next