Which symbol should you use to assign a value to a variable?
Answers
Answered by
1
Explanation:
The = symbol is known as the assignment operator. It is also possible to declare a variable and assign it a value in the same line, so instead of int i and then i = 9 you can write int i = 9 all in one go.
Similar questions