09.12.2014, 13:19
"/" is the operator for division. Here is an example:
new value = 10, tmpval;
tmpval = value / 100;
This would give you 10 since 100 divided by 10 is 10.
new value = 10, tmpval;
tmpval = value / 100;
This would give you 10 since 100 divided by 10 is 10.