C aptitude question:
Predict the output:

int main()
{
int IS[5] = { 10, 20, 30,40, 50 };
int *ptr = (&IS + 1);
printf("%d %d\n", *(IS + 1), *(ptr - 1));
return 0;
}

Posted on by