answersLogoWhite

0

You can find the ASCII value of numbers greater than 9 using the following functions: std::to_string or boost::lexical_cast or std::ostringstream depending on the compiler that you are using.

User Avatar

Wiki User

10y ago

Still curious? Ask our experts.

Chat with our AI personalities

LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao
BeauBeau
You're doing better than you think!
Chat with Beau
TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga
More answers

Numbers don't have ASCII values. Only characters do. To find the ASCII bytes
for 255 characters and controls, do a web search for "ASCII codes".

User Avatar

Wiki User

10y ago
User Avatar

Add your answer:

Earn +20 pts
Q: How do you find the ASCII value of numbers greater than 9?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How can you type different brackets?

If you can't find them on your keyboard, use charmap.exe () ASCII 28H and 29H [] ASCII 5BH and 5DH {} ASCII 7BH and 7DH


Find out whether an inputted letter is capital letter or small letter or a special symbol?

You compare it against the known character ranges! The following is an example to identify ASCII characters:First, check if it is ASCII. All ASCII characters are less than 0x80. If it is:Check for a printable character (range: 0x20 to 0x7E). If it is:0x20: Space0x30 to 0x39: Numbers0x41 to 0x5A: Capital letters0x61 to 0x7A: Lowercase lettersEverything else are special symbols ($, #, !, ?, and friends).Everything else are control charactersIf the value is >= 0x80, then it is not ASCII. What character it represents is specified by the codepage.Note that some codepages (most notably the Windows-1252 codepage, sometimes incorrectly called ANSI) are extensions to the ASCII standard, so the characters less than 0x80 would be the same as in ASCII.


How to write a C program to find repetitions of letters in a string?

"in order to check the repetition of characters in a string in c" we have to pick up each element of the string using a for loop and then using its ASCII value check whether another character of the same ASCII value exists using an if condition statement.


How do you find the smallest value in a set of numbers in qbasic?

Store the numbers in a suitable container such as an array. Assume the first number is the smallest and assign its value to a local variable. Traverse the remainder of the sequence, comparing each element's value to the stored value. If an element has a lower value, assign its value to the local variable. When the sequence is fully traversed, the local variable will hold the value of the smallest value in the sequence. Return that value.


Mca vtu notes for 1st sem?

Write a simple program to find out how many of the numbers from 1 to 10 is greater than 4.