Open In App

C++ | const keyword | Question 5

Like Article
Like
Save
Share
Report




#include <stdio.h>
int main()
{
   const int x;
   x = 10;
   printf("%d", x);
   return 0;
}


(A) Compiler Error
(B) 10
(C) 0
(D) Runtime Error


Answer: (A)

Explanation: One cannot change the value of ‘const’ variable except at the time of initialization. Compiler does check this.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads