Re: Modifying variables
- Posted by Ad Rienks <kwibus at ZONNET.NL> Nov 13, 1999
- 611 views
Lucius Hilley wrote:
<snip>
> integer i
<snip>
> i = '1' + '2'
You surprise me; I never thought of this kind of arithmetic. But for a
newbie this must be a bit confusing. The result i is the number 99, and how
is that done?
Well, in Basic you could write this as ASCII('1') + ASCII('2'), or something
like that!
Now do you understand that the result is 99?
Ad

