basic./=
Divides numeric expression and assigns to variable.
Syntax
variable /= num.expression
Description
divides a variable by a numeric expression and assigns it to the given variable.
Example
x /= 2
This divides the current value of 'x' by '2' and assigns
the result to 'x'. This is equivalent to: x = x / 2
See Also
User Comments
What do you think?
Share your experience or ask a question by using the form below.
Login to leave your comments.
