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;
}
β
Correct Answer: (B)
1234 1234