I believe characters have a toUpper() function. For example:
char x = 'a';
printf("%c\n", x.toUpper()); // This should print "A"
You could also add or subtract using ascii values - remember, a char is pretty much an integer, just displayed differently. For example:
printf("Character %c = decimal %d\n", x, x);
will display your character and its ascii integer equivalent.
There are a couple of different ways to convert upper case characters to lower case in easytrieve. One is to use the INSPECT/CONVERTING command.
"Case sensitive" means that, for example, myvariable, MyVariable, and myvAriAble are three separate things. In other words, upper case or lower case matters.
upper case
Not sure how the upper case and lower case letters interact. If that can be ignored then rj.Not sure how the upper case and lower case letters interact. If that can be ignored then rj.Not sure how the upper case and lower case letters interact. If that can be ignored then rj.Not sure how the upper case and lower case letters interact. If that can be ignored then rj.
Both. "Case sensitive" means that upper case and lower case characters are treated as different characters.
Use the UPPER function
THIS IS UPPER CASE & this is lower case. So it is basically CAPITAL and small letters.
upper case
Upper and lower case came from when everything used to be printed by hand. The letters would be inside of a brief case. The upper case would be kept on the top of the case and the lower case on the bottom.
no.
abcdefghijklmnopqrstuvwxyz <----lower case. ABCDEFGHIJKLMNOPQRSTUVWXYZ <---uppercase.
Each letter of the alphabet, whether upper case or lower case, can be represented with 7 bits.