Example & Tutorial understanding programming in easy ways.

What is the difference between the array and the pointers?

Basically, array is a collection of similar data type.

- while, pointer are the variable which store the address of another variable.


Declare array:

int arr[10];


Declare pointer:

int *p;

p=&var;

Read More →