Computer Science, asked by yadavrajesh10252, 2 days ago

Diffrence between c types data and constants

Answers

Answered by bandanasahoo
1

Difference between Variables and Constant in C Program

It is a fixed variable that cannot be changed after defining the variable in a program. The value of a variable can change depending on the conditions. In constants, the value cannot be changed. Typically, it uses int, float, char, string, double, etc.

Answered by snehabarik03
4

Answer:

constant is a value that doesn't change throughout the execution of a program. A variable is an identifier which is used to store a value

Similar questions