Given a string - write a function to sort its characters alphabetically
Anonym
Convert each character to its integer representation (see ASCII table for more details) and using a double nested loop - for each character of the string compare its integer value with the next character and so on.