Q. What is the output of C Program with functions and pointers.?
Code:
int main()
{
int b=25;
//b memory location=1234;
int *p = b;
printf("%d %d", b, p);
return 0;
}
β
Correct Answer: (C)
25 25