My coding standards gripes are pretty tame compared to some of the heinous stuff I've seen here, but here goes:
I was on a project where some of the developers insisted on the most peculiar form of indenting I've ever seen:
if (condition)
{
x++;
printf("Hello condition!\n");
}
else
{
y++;
}
We were developing for an embedded environment with a really rotten debugger. In fact, printf(), hexdump() and the mapfile were the preferred method of debugging. This of course meant using static was forbidden and all global variables and functions had to be of the form modulename_variablename.
Checking in code with warnings was forbidden (not such a bad thing), but the compiler would warn about any conditional that was constant. Therefore, the old macro/statement trick of do { something(); } while(0) was forbidden.
Lastly, leaving a trailing comma on a enumerator list or initializer was considered lazy, and thus forbidden:
enum debuglevel
{
NONE,
FATAL,
WARNING,
VERBOSE, // Naughty, naughty!
};
As I've said, rather tame. But as a follower of "The Ten Commandments for C Programmers", I found the unconventional bracing style absolutely maddening.