IS STRING VALUE AND ASCII VALUE SIMILAR?
Answers
Answered by
11
Answer:
No.....................
Answered by
1
Given a string str which represents the ASCII Sentence, the task is to convert this string into its equivalent character sequence.
Examples:
Input: str = “71101101107115”
Output: Geeks
71, 101, 101, 107 are 115 are the unicode values
of the characters ‘G’, ‘e’, ‘e’, ‘k’ and ‘s’ respectively.
Similar questions