I need a function that returns the ASCII value of a character, including spaces, tabs, newlines, etc...
On a similar note, what is the function that converts between hexadecimal, decimal, and binary numbers?
|
|
I need a function that returns the ASCII value of a character, including spaces, tabs, newlines, etc... On a similar note, what is the function that converts between hexadecimal, decimal, and binary numbers?
|
||
|
|
|
|
A char is an integer, no need for conversion functions. Maybe you are looking for functions that display integers as a string - using hex, binary or decimal representations? |
||
|
|
|
|
If you want to get the ASCII value of a character in your code, just put the character in quotes
|
||
|
|
|
|
You don't need a function to get the ASCII value -- just convert to an integer by an (implicit) cast:
To convert a number to hexadecimal or decimal, you can use any of the members of the
There is no built-in function to convert to binary; you'll have to roll your own. |
||
|
|
|
|
You may be confusing internal representation with output. To see what value a character has:
Similarly fo hex valuwes - all numbers are hexadecimal numbers, so it's just a question of output:
The "hex" in the output statement is a C++ manipulator. There are manipulators for hex and decimal (dec), but unfortunately not for binary. |
||
|
|
|
|
As far as hex & binary - those are just representations of integers. What you probably want is something like printf("%d",n), and printf("%x",n) - the first prints the decimal, the second the hex version of the same number. Clarify what you are trying to do - |
||
|
|