C++ | const keyword | Question 5ReadDiscussCoursesPracticeImprove Article ImproveSave Article SaveLike Article Like#include <stdio.h>int main(){ const int x; x = 10; printf("%d", x); return 0;}(A) Compiler Error(B) 10(C) 0(D) Runtime ErrorAnswer: (A)Explanation: One cannot change the value of ‘const’ variable except at the time of initialization. Compiler does check this.Quiz of this QuestionLast Updated : 28 Jun, 2021Like Article Save Article Please Login to comment...