#include int main(){ const int *p; int a=10; p=&a; printf("%d",*p); return 0; }
Click an option to check whether your answer is correct.
In the following declaration
const int *p;
p can keep address of constant integer.
Explore more questions from similar topics.
Share this MCQ with your friends or study group.