write the syntax of variable declaration
Answers
Answered by
1
Answer:
straightforward ::::.
Answered by
1
Answer:
dataType variableName = initialValue ; This declares a variable, declares its data type, reserves memory for it, and puts an initial value into that memory. The initial value must be of the correct data type.
Similar questions