#include <stdio.h>
int main()
{
int *ptr, i = 10, j = 20;
ptr = &j; ptr++;
printf("Val = %d\n", *ptr);
return 0;
}
References: C From Theory