5
votes
3answers
2k views
Avoid trailing zeroes in printf()
I keep stumbling on the format specifiers for the printf() family of functions. What I want is to be able to print a double (or float) with a maximum given number of digits after the decimal point …
1
vote
How do you deal with NUL?
While, on the whole, I would advice using named constants, this is one exception. To me, defining:
#define NULL 0
#define END_OF_STRING '\0'
makes as much sense a …
7
votes
Why can’t variables be declared in a switch statement?
There is a conflict here between language syntax and common sense. For us humans, it looks like this code (taken from 1800 INFORMATION's answer) should work fine:
class A
{
// ha …
3
votes
Should a buffer of bytes be signed or unsigned char buffer?
Do you really care? If you don't, just use the default (char) and don't clutter your code with unimportant matter. Otherwise, future maintainers will be left wondering why did you use signed (or …
