A
Q. What is the output of this code?
Code:
int a = 10;
int *p = &a;
printf("%d", *p);
int *p = &a;
printf("%d", *p);
- Correct Answer - Option(B)
- Views: 19
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.