+ 1
Why S.o.pln ('a' + 'a') print 194 ?
Just explain or give information about ASCII or Numeric codes shortly.
4 odpowiedzi
+ 2
Ascii value of a is 97
So 97+97=194
+ 1
Character 'a' ASCII value is 97, add another 'a' (97) and you got 194 as a result. + operator here acts as arithmetic operator add. If you wanted "aa" you should've used string instead of character : )
+ 1
I want to know what is ASCII I know that a is 97 A is 65 or ...
+ 1
American Standard Code for information interchange.
A standard encoding format used in communication systems.. represent 128 charecters.
Use google search for more info..