Computer Science, asked by kanthrajk, 6 months ago

What is a variable in C?​

Answers

Answered by Tarav
2

A variable is nothing but a name given to a storage area that our programs can manipulate. Each variable in C has a specific type, which determines the size and layout of the variable's memory; the range of values that can be stored within that memory; and the set of operations that can be applied to the variable.

Answered by ss3901974
2

Explanation:

Variables in C Language. ... Variable is the name of memory location. Unlike constant, variables are changeable, we can change value of a variable during execution of a program.

Similar questions