Answers for "how to assign constant to names in c programming"

0

How to declare the constant in c programming language

float const pi = 3.14;

int const a = 5;

char const yes = 'y';
Posted by: Guest on January-08-2022

Code answers related to "how to assign constant to names in c programming"

Browse Popular Code Answers by Language