A
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);
}
int huge*p=(int huge*)0XC0563331;
int huge*q=(int huge*)0xC2551341;
*p=200;
printf(“%d”,*q);
}
- Correct Answer - Option(B)
- Views: 22
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.