Home » C Programming » Constants

Point out the error in the program. #include<stdio.h> int main() { const int k=7; int *const q=&k; printf("%d", *q); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!