#include <stdio.h>
int main() {
int arr[5];
long int p1,p2;
p1 = (long) arr;
p2 = (long) &arr;
printf("%ld %ld\n",p1,p2);
p1 = (long) (arr+1);
p2 = (long) (&arr+1);
printf("%ld %ld",p1,p2);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: