vote up -2 vote down star

Hi, If I have a char which holds a hex value such has 0x53, (S), how can I display this as "S"?

Code:

char test = 0x53;
cout << test << endl;

Thanks!

flag

33% accept rate
Do you have an actual question? – Robert Gamble Nov 9 '08 at 3:56
that already works. – tgamblin Nov 9 '08 at 3:57
I don't understand... is there a question? – Jason Coco Nov 9 '08 at 4:00
:|, whops sorry lol – BobS Nov 9 '08 at 4:00
I am getting werid letters like ^@ – BobS Nov 9 '08 at 4:02
show 3 more comments

2 Answers

vote up 5 vote down

There's no such thing as a variable that stores a hex value, or a decimal or octal value. Hex, octal, and decimal are just different ways of representing numbers to the compiler. The compiled code will represent everything in binary.

These statements all have the exact same effect (assuming the charset is ASCII):

test = 0x53; // hex
test = 'S';  // literal constant
test = 83;   // decimal
test = 0123; // octal

So print the character the same way you would with any character, no matter how you assign it a value.

link|flag
Your first statement is a too strong. Bob's test does hold a hex value; that hex value is 0x53. Granted, it also holds decimal 83 and octal 0123, but it does hold 0x53 too. – Jonathan Leffler Nov 9 '08 at 8:50
vote up 2 vote down

Just use the following, you have already answered your question:

using namespace std;

int main() {
    char test = 0x53;
    std::cout << test << std::endl;
    return 0;
}
link|flag
if you're calling the std namespace, why are you prefixing "cout" and "endl" with "std::"? seems a little redundant to me. – dydx Nov 11 '08 at 22:20
sorry my mistake in using the std:: again after calling the std namespace. just a matter of habit :( – gagneet Nov 23 '08 at 3:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.