ACCESS THE ELEMENT OF ARRAY

To access an element of an array we used to refer to its index number array indexes start with [0] is the first element , [1] is the second element and etc.

 Ex

int num []={10,15,20,25,30};

printf(“%d”, num[2]);

 // output:20