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