Am I correct in description of the following code
Code:
int array[5]={0};
int *ptr=array;

...

scanf("%d", &*(ptr + i) );/* Store input at the address of the value at (ptr + i)*/
Does the comment correcty describe what I am doing??