Which value(letter or special character) comes under the decimal number - "17" ?😅 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Which value(letter or special character) comes under the decimal number - "17" ?😅

Decimal number - 17 Value - ? https://code.sololearn.com/chZdN42Is9rv/?ref=app Please visit this C-code for better understanding....

12th Sep 2020, 2:55 PM
Yogeshwaran P
Yogeshwaran P - avatar
3 Answers
+ 2
There is no value for str[4] or it is zero by default.If you declare an array of char you have to indicate its size or compiler will add implicitly end of string to it '\0' .str[4] is out of range it raises an error.17 in ascii code is x11 or device controll 1 for keyboard flow controll ctrl + Q => quit the current console screen.
12th Sep 2020, 3:46 PM
HBhZ_C
HBhZ_C - avatar
+ 2
Check this for all ascii values... Including 17 https://www.cs.cmu.edu/~pattis/15-1XX/common/handouts/ascii.html
12th Sep 2020, 3:51 PM
Jayakrishna 🇮🇳
+ 2
Thank you HBhZ_C Thank you Jayakrishna🇮🇳 Now I am find that decimal values.... 😊
13th Sep 2020, 2:10 AM
Yogeshwaran P
Yogeshwaran P - avatar