Computer Science, asked by jeevikaacharya77, 7 months ago

explain constants in C++ with suitable example (for 5 marks)​

Answers

Answered by rithikakv1
1

Answer:

constant is keyword of const whose value can never be changed during execution . It act as an access modifier

example:

const float pi = 3.14;

Similar questions