In the ASCII character encoding, the letters of the alphabet are in order: ‘a’ comes before ‘b’ and also ‘A’ comes before ‘B’. However, which comes first - lower or uppercase letters?
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:1| Question number:21.1
All Answers
total answers (1)
>> int32('a') ans = 97 >> int32('A') ans = 65 The upper case letters
need an explanation for this answer? contact us directly to get an explanation for this answer