#include <stdio.h>
int main()
{
int arr[] = {1, 2, 3, 4, 6};
int *p = arr;
for (int i = 0; i < 5; i++)
printf("arr[%d] = %d\n", i, *p++);
}
return 0;