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