I have two String Max and Min that where obtained using a list of Strings by simple comparison operation.
Now, I want to use these two Strings to find like the average of this two Strings. Meaning I want to have like the middle String between these two Strings.
For example if I enter “a” and “z” the average should be “m”
Are you doing these operations on strings of same size? In this case, you can use average of the ascii of each character.
in c it will be
Make sure the strings have the same case (both uppercase or both lowercase.)