Rust - Operators Flashcards
1
Q
What is the difference between operator and operands
A
An operator defines some function that will be performed on the data.
The data on which operators work are called operands
7+5 = 12
the values 7, 5, and 12 are operands, while + and = are operators.
2
Q
A