Home » C Programming » Constants

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

Correct Answer: Error: const variable have been initialised when declared.

Explanation:

A const variable has to be initialized when it is declared. later assigning the value to the const variable will result in an error "Cannot modify the const object".


Hence Option B is correct


← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion