MCQ
Q.
What will be output of the following c code?
#include
int main()
{
const int *p;
int a=10;
p=&a;
printf("%d",*p);
return 0;
}
Correct Answer: B
In the following declaration
const int *p;
p can keep address of constant integer.