Ada95: Converting Integer to Character
ada
Solution
You may be looking for the `'Val` attribute as applied to the discrete subtype `Character`, illustrated here. `Character'Val` works like a function that takes an integer and returns a `Character`.
Problem
Is there a way in Ada to convert an Integer to character? Ex: ``` TempInt := 1; InGrid(RowIndex, ColumnIndex) := (ToCharacter(TempInt)); --This will be used to input a character value from an integer into an array of characters. ``` Is there any "ToCharacter" for Integer->Character conversion for Ada?