| Author |
Assigning to char
|
Guy Belpa
Ranch Hand
Joined: Nov 21, 2004
Posts: 41
|
|
It is legal to assign a number literal (octal ,decimal ,hexdecimal) (0-65535) to char.Isn't it? so what are they take as their character? Is it unicode number? If char=017; char=17; char=ox11; Are a,b,c take same character?
|
 |
ankur rathi
Ranch Hand
Joined: Oct 11, 2004
Posts: 3829
|
|
Hi , Yes you can assign a number to char . char c = 97; since 97 is ascii value of a , when you print it with SOP it will print a . try it .
|
 |
marc weber
Sheriff
Joined: Aug 31, 2004
Posts: 11343
|
|
See http://www.asciitable.com/
|
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Assigning to char
|
|
|