R
Q. What is the output of C Program with functions and pointers.?
Code:
int main()
{
int b=25;
//b memory location=1234;
int *p;
p=&b;
printf("%d %d %d", &b, p);
return 0;
}
{
int b=25;
//b memory location=1234;
int *p;
p=&b;
printf("%d %d %d", &b, p);
return 0;
}
- Correct Answer - Option(B)
- Views: 139
- Filed under category C Programming
Discusssion
Login to discuss.