Predict The Output:

int main()
{
int *p=(int *)1000;
*p=2;
printf("%d",*((int*)1000));

return 0;
}

Related Posts