adplus-dvertising
frame-decoration

Question

Regarding following statement which of the statements is true?
const int a = 100;

a.

Declares a variable a with 100 as its initial value

b.

Declares a construction a with 100 as its initial value

c.

Declares a constant a whose value will be 100

d.

Constructs an integer type variable with a as identifier and 100 as value

Answer: (c).Declares a constant a whose value will be 100

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Regarding following statement which of the statements is true? const int a = 100;