Home » C Programming » Constants

Point out the error in the program. #include<stdio.h> int main() { const int x; x=128; printf("%d\n", x); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!