Which is the right way to declare constant in C? *
1 point
int constant var =10
int const var = 10;
const int var = 10;
B & C Both
Answers
Answered by
0
Answer:
Both B and C are right answer.
Similar questions