+ 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....
3 Réponses
+ 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.
+ 2
Check this for all ascii values... Including 17
https://www.cs.cmu.edu/~pattis/15-1XX/common/handouts/ascii.html
+ 2
Thank you HBhZ_C
Thank you Jayakrishna🇮🇳
Now I am find that decimal values....
😊