alex a �crit dans le message <36527480.5A60@usa.net>... >How do I cast char to an int using ada? What is a char and what is an int :-) ?? Maybe you wanted to talk about Character and Integer, in this case : C : Character; I : Integer; C := Character'Val (I); I := Character'Pos (C); Pascal.