Value that changes during program execution.
Answers
Answered by
3
Answer:
- Values that changes during program execution is called - Variable.
Explanation:
- Variables are those whose value can be changed during the execution of a program/runtime.
- A variable is a memory location which contains a value.
- To create a variable, we must specify its data type, name and value.
- Example, int a=5;
- Here. int is the data type, a is the variable name and 5 is the value of the variable.
•••♪
Similar questions