I would just like a few things that you guys see as bad programing practices in pure C, so I can watch out for those.

link|improve this question
2  
The number #1 bad practice would be: Using C. – Christian Oct 9 '10 at 23:13
feedback

9 Answers

Embedding extern declarations in C files, instead of using header files:

extern void foo(int a, int b);
foo(1, 2);

In the future when somebody changes the implementation of foo, to take a third argument for example, the compiler won't complain because this code matches the prototype. At runtime whatever garbage happens to be in the third argument register will be passed to foo. Hijinks ensue.

link|improve this answer
I've been victimized by this. – Mark Essel Apr 11 '11 at 15:03
feedback

Just violate any of The Ten Commandments for C Programmers.

link|improve this answer
1  
He ought to make that readable and stop trying to be funny. Sounds like someone on usenet in 1995. – Baltimark Sep 11 '08 at 18:59
1  
^^ Exactly. I think of any number of colleagues of mine who speak English as a second language and cringe. – Nik Reiman Oct 12 '08 at 16:57
1  
Not only that, but a lot of the advice dates back to the K&R to ANSI C conversion. These days things like "cast all function arguments to the expected type" don't sound like good advice to me. There's even an entire commandment wasted on brace wars.... – Frank Szczerba Oct 14 '08 at 22:11
4  
They should be numbered 0 to 9. – sal Apr 27 '09 at 20:07
I'd give this one ten votes if I could. – C Johnson Aug 18 '10 at 2:08
feedback

From: http://www.webinmind.net/bpc.html

link|improve this answer
Yeah, I know the list is numbered incorrectly, but it looks fine in the editor. What can I say? – GEOCHET Sep 11 '08 at 16:44
The link is helpful. Copying and pasting the entire (copyrighted) work and posting it as your own isn't. It's not fair use, it's plagarism (even with the attribution). – jmanning2k Sep 11 '08 at 17:04
I won't comment on whether or not it is plagiarism with the link right there. Regardless I would say that it falls into the lame category. – EBGreen Sep 11 '08 at 17:10
Agreed, just citing a source is not good enough. – UnkwnTech Sep 11 '08 at 17:46
Totally agree. Especially when the formatting isn't as good as the original. Jees, just post the link! – Rob Wells Sep 11 '08 at 18:10
show 1 more comment
feedback

I would turn the question around as there can be no real answer to your question. This is because there are so many "bad practices". Perhaps a rephrase is in order: "How will I know good C programming practices so I can know good code from bad when I see it?"

THAT we can help answer.

The most fundamental answer is; good code is like beauty - I know it when I see it even if I can't necessarily describe all its manifest forms.

A good rule of thumb for any and all programming languages is: Can I understand what's going on without being the most expert person?

A good programmer leaves those that follow - most often themselves - with many bread-crumbs to follow, leaving notes behind that describe why and how something is being done instead of just what; this is a key hallmark of a good coder.

One case in point was a bug I found due to use of single versus two digit month. The problem was not the overall logic it was that a library call that was going to convert the two digits into an integer was interpreting the leading zero as an indication that it was receiving an octal input! No, it was just a leading zero, and octal worked fine for most months, and when it got to October, it worked properly once more!... So, rather than just fix it, I left the bread-crumb comment behind why there was extra code and why the former code didn't work...

Bad code doesn't do that, and that's one easy way to tell good C (etc) programming from bad.

link|improve this answer
feedback

How to write unmaintainable code. Don't do it.

link|improve this answer
feedback

C Traps and Pitfalls by Andrew Koenig is a very good reading on this subject.

I believe it can be downloaded for free as well but I don't have a direct link.

link|improve this answer
feedback

About the only thing I can think of off the top of my head:

  • Frequent use of goto
link|improve this answer
1  
goto is the bomb – Matt Joiner Aug 17 '10 at 14:26
feedback

More of an editorial note... "Bad programming practices" are sometimes referred to as anti-patterns. You could start a tag for that.

link|improve this answer
feedback

While some might disagree, I would say write code which compiles cleanly in both a C and C++ compiler. While some bits of C that break in C++ are annoying (can't use new, delete, or a bunch of other new keywords), C++ also enforces a bunch of extra checks, in particular making sure all your function prototypes match up neatly.

Of course if you do this, make sure you don't end up drifting into C++ code by accident, Unless you don't really need to stick to C of course.

link|improve this answer
I try to do that. My biggest pet peeve is the requirement that one add a lot of glue to an enum to make it work like an int "again". – supercat Aug 18 '10 at 3:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.