Computer Science, asked by angadmonga5144, 1 year ago

What is the right way to declare a constant in c?

Answers

Answered by piyushatre29
1

write way to declare a constant in c program is:


const int num;

const float sum;

const char abc;

Similar questions