which is a valid statement for declaring a variable
Answers
Answered by
13
Answer:
The valid Statement to declare a variable is:-
<data type> space <variable name>
eq. int m;
Explanation:
The variable is a named memory location which contains the value. This value may or may not change depending upon the circumstances of the program. We can declare more than one variable of the same type in a statement.
Similar questions