2
answers
1
votes
0
answers
0
votes
What string type do you use in your Ada program?
Ada has several types to manage strings. Each of them have different character width.
///
String
WideString
WideWideString
///
Which of them do you use and why?
...
1
answers
2
votes
How can I read the whole file content in a string in Ada?
I have to read a file in an Ada program and get the file content in some string.
Any tips on how to do that?...