#include <stdio.h>

int main() 
{
    int a[]={1,2,3,4,5,67,34,56,78,90};
    int *ptr=a;

    printf("the value at address %u is %d",ptr+2,*ptr+2);
    
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: