A
Q. What is the output of C Program with pointers?
Code:
int main()
{
int a=20;
//a memory location=1234
printf("%d %d %d", a, &a, *(&a));
return 0;
}
{
int a=20;
//a memory location=1234
printf("%d %d %d", a, &a, *(&a));
return 0;
}
- Correct Answer - Option(C)
- Views: 19
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.