Hello...
In strings i learned how to sort about numbers...
the question is, how does one sort letters?
there are some sort in alphabet here in Daniweb
but i cant understand its process
is Letter A > than Z? is the computer using ascii values?
isn't A(65)< Z(90)?
if in strings, if i type
string[2]={"Scott","Andrew"};
if(name[0]>name[1]) //results to Andrew then Scott?
//fake code
would it arrange itself in alphabetical order?
help...:|