#include stdio.h
int main()
{
int ary[] = {11, 33, 55};
int *p, *q;
p = ary;
q = ary+3;
printf("%d %d",*p, *q);
return 0;
}
The output of code is:

Posted on by