Q. What will be output of the following c code?
Code:
void main(){
int huge*p=(int huge*)0XC0563331;
int huge*q=(int huge*)0xC2551341;
*p=200;
printf(“%d”,*q);
}
β
Correct Answer: (B)
200