23,967 reputation
32776
bio website
location
age
visits member for 4 years, 7 months
seen yesterday
stats profile views 4,173

May
17
comment Trying to add text at the end of a file in Ada
Sometimes I wish they'd named "Append_File" to "In_Out_File" for consistency with the argument above. :-)
May
17
answered Trying to add text at the end of a file in Ada
May
17
revised Trying to add text at the end of a file in Ada
edited title
May
16
comment if statements in c++
...or perhaps if (a-- > 0). If a is a non-static local you can even get away with if (a > 0).
May
13
revised How to organize Ada project in directories?
added 3 characters in body
May
10
comment How does C++ interact with the Operating System?
One of the closers please explain how this is off-topic? The asker may want to know how to avoid closure in the future. I'd tell him what the problem is, but frankly its a mystery to me too.
May
10
revised What is the recommended procedure for initializing char arrays?
deleted 1 characters in body
May
9
revised How does C++ interact with the Operating System?
deleted 142 characters in body
May
9
revised How does C++ interact with the Operating System?
added 736 characters in body
May
9
answered How does C++ interact with the Operating System?
May
9
revised What is the recommended procedure for initializing char arrays?
added 330 characters in body
May
9
revised What is the recommended procedure for initializing char arrays?
added 330 characters in body
May
9
answered What is the recommended procedure for initializing char arrays?
May
9
comment Reading and writing double precision from/to files
Additionally, I'd suggest using stream operators rather than scanf/printf and friends. They are just far too error-prone, so I've sworn off of them. Due to issues like this one, I would often find myself spending hours (if not days) tracking down "bugs" that are really just misues of printf in debug statements in otherwise perfectly working code.
May
6
revised Why Use Lexical Analyzers?
added 1 characters in body
May
5
comment Is is possible to have a child package as a separate compilation unit in Ada
If the file is huge, your package almost certainly needs to be broken up into multiple packages (which would each get their own files, solving the huge file problem too). Similarly, if one routine is huge, it almost certainly needs to be broken up into multiple routines (or even a whole package in extreme cases).
May
3
comment Is is possible to have a child package as a separate compilation unit in Ada
"is separate" is really meant for moving gigantic subroutines into their own source file. It isn't nessecary for packages. For routines, its usually a better idea to simplify the routine instead. Many projects I've worked on actually banned its use. As a user, I'd suggest you learn what it does so you can read code that uses it, but avoid using it yourself.
Apr
25
revised Ada beginner Stack program
edited tags
Apr
25
comment How does Ada implement 'mod' and 'range' types? What are the performance implications?
Actually, if the modular type happens to fit exactly in a machine register, wouldn't the compiler just handle the wrapping situation by letting nature take its course (and ignoring any pesky overflow or carry flags)? In this case, the modular integer would be more efficient, as constraint checks would never be required.
Apr
16
comment How to find zombies in Ada?
I'd like to particularly call out the storage pool option. If you do this, whenever the pool goes out of scope, all the objects in it are automatically freed. Its a really nifty way to let your program's scoping do your "garbage collection" for you.