Login and Register ×
Check your Email for the OTP
C Programming Language MCQ Pointer in C Language
⚠ Report ✓ Question Verified Copy Link
#include int main(){ const int *p; int a=10; p=&a; printf("%d",*p); return 0; }
Explanation:
In the following declaration
const int *p;
p can keep address of constant integer.
Related Topic:
Share Above MCQ
Learn More MCQ Questions from C Programming Language MCQ Pointer in C Language