Single Choice
Easy
QWhat is the output of this program?
#include
int main(){
const int *p;
int a=10;
p=&a;
printf("%d",*p);
return 0;
}
ID: #899
Pointer in C Language
4,646 views
Question Info
#899Q ID
EasyDifficulty
Pointer in C LanguageTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
In the following declaration
const int *p;
p can keep address of constant integer.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic