Which of the following is TRUE for a variable defined with the keyword const and initialized to a value in C language?

Which of the following is TRUE for a variable defined with the keyword const and initialized to a value in C language?

مندرجہ ذیل میں سے کون سا متغیر کے لئے صحیح ہے جو مطلوبہ الفاظ کے ساتھ بیان کیا گیا ہے اور سی زبان میں کسی قدر سے شروع کیا گیا ہے؟
Explanation

A variable declared with the const keyword in C becomes read-only and its value cannot be modified after initialization.

Attempting to change a const variable will result in a compile-time error.