vote up 21 vote down star
14

Hi

In September, I will give my first lectures on C to students in engineering school (usually I teach math and signal processing, but I have also done a lot of practical work in C, without giving the lectures). Computer science is not their main topic (they are more studying electronics and signal processing), but they need to have a good background in programming (some of them will maybe become software developers)

This year will be their 2nd year of learning C (they are supposed to know what a pointer is and how to use it, but of course, this notion is not yet assimilated)

In addition to the classical stuff (data structures, classical algorithms, ...), I will probably focus some of my lectures on: - design the algorithm (and write it in pseudo-code) before coding it in C (think before coding) - make your code readable (comments, variable names, ...) and - pointers, pointers, pointers ! (what is it, how and when to use it, memory allocation, etc...)

According to your experience, what are the most important notions in C that your teachers never taught you ? On which particular point should I focus ?

For example, should I introduce them to some tools (lint, ...) ?

flag
14  
should be community wiki – Samuel Carrijo Aug 10 at 14:30

57 Answers

1 2 next
vote up 3 vote down

keyword: volatile

link|flag
6  
Seriously? How often has that come up for you doing basic stuff in C? – Jon Swinghammer Aug 10 at 14:44
1  
The one time I've needed it the compiler had a bug and ignored it! On the 16bit ISA bus on the PC you read a word by reading the same byte address twice. Which the compiler optimizes out, on the Zortech C++ compiler even if you add volatile. – mgb Aug 10 at 14:51
2  
For hardware-type programmers, volatile is very much needed. There are all kinds of hardware interfaces that demand that you access them in a very specific way. – Robert Aug 10 at 17:10
show 5 more comments
vote up 7 vote down
  • Trashed memory can trigger all sorts of weird bugs.
  • Debuggers can lie to you.
link|flag
3  
It would be helpful to say how debuggers can lie to you. For example, they initialize memory to zero, and change thread ordering (hiding race conditions in some cases). – Paul Biggar Aug 10 at 15:13
show 1 more comment
vote up 13 vote down

When I had to use C as part of a larger project in school it was the ability to use gdb properly (i.e. at all) that ended up predicting who would finish their project and who would not. Yeah if things get crazy and you have tons of pointer and memory related bugs gdb will show weird information but even knowing that can point people in the right direction.

Also reminding them that C isn't C++, Java, C#, etc. is a good idea. This comes up most frequently when you see someone treating a char* like a string in C++.

link|flag
show 3 more comments
vote up 1 vote down

Never believe the compiler. It is usually right that there is a problem, but except for the most trivial of errors, it's almost always wrong about what the problem is, and where it is.

NOTE: I didn't say ignore the compiler. I said don't BELIEVE it. It knows there is a problem, but it is frequently wrong about what exactly it is. Taking the compiler output at face value is a recipe for frustration and wasted time. Especially for complex errors.

link|flag
4  
Nonsense. The compiler is your friend. Listen to what it says. – Kristof Provost Aug 10 at 14:40
3  
The trick is learning how to interpret the compiler errors. It's usually wrong about what the error is, but it's CONSISTENT, so when it says the error is X on line Y, you can predict that it's really error Z on line Y-a... – Brian Postow Aug 10 at 15:14
show 3 more comments
vote up 5 vote down

I think that the overall idea seems really good. These are some extra stuff.

  1. A debugger is a good friend.
  2. Check the boundaries.
  3. Make sure that the pointer is actually pointing to something before it is used.
  4. Memory management.
link|flag
vote up 12 vote down

unsigned vs signed.

Bit shift operators

Bit masking

Bit setting

integer sizes (8-bit, 16-bit, 32-bit)

link|flag
4  
+1 for bitshifting - also, bitmasking. – Meredith L. Patterson Aug 10 at 14:40
show 3 more comments
vote up 10 vote down

The (dangerous) side effects of macros.

link|flag
show 3 more comments
vote up 9 vote down

Use valgrind

link|flag
vote up 8 vote down

Use a consistent and readable coding style.

(This should help you in reviewing their code as well.)

Related: Don't prematurely optimize. Profile first to see where the bottleneck is.

link|flag
show 1 more comment
vote up 10 vote down

Object orientation:

struct Class {
    size_t size;
    void * (* ctor) (void * self, va_list * app); // constructor method
    void * (* dtor) (void * self);                // destructor method
    void (* draw) (const void * self);            // draw method
};

(Code source)

link|flag
4  
+1 for noting that you can do OO without explicit support for it in your language. – Jon Swinghammer Aug 10 at 14:50
4  
C++ does all this work for you so you can focus on actually coding, not doing it by hand. I know they are different languages, but C++ is superior in almost any way. You can do this (the answer) in C++ cleanly, and let the compiler take care of the details. So, why not learn C++ and use it rather than do a poor imitation of it. The only two reasons I can think of for not using C++ over C are compiler options (embedded systems) and existing code base. – GMan Aug 10 at 15:04
2  
The OP notes that the students are mainly studying electronics and signal processing. So compiler options are very likely the reason for learning to do things like this in C. – John D. Aug 10 at 15:20
3  
Meh, comments are used for commenting. – GMan Aug 10 at 15:20
9  
Not suitable for beginners! – Norman Ramsey Aug 10 at 17:24
show 9 more comments
vote up 28 vote down

Use of const keyword in pointers context :

The difference between following declarations :

 A)   const char* pChar  // pointer to a CONSTANT char  
 B)   char* const pChar  // CONSTANT pointer to a char  
 C)   const char* const pChar  // Both

So with A :

const char* pChar = 'M';
*pChar = 'S'; // error : you can't modify value pointed by pChar

and with B :

char OneChar = 'M';
char AnotherChar = 'S';
char* const pChar = &OneChar;
pChar = &AnotherChar; // error : you can't modify address of pChar
link|flag
show 4 more comments
vote up 2 vote down

The debugger is your friend. C is an easy language to mess up and the best way to understand your mistakes is often to see them under a debugger.

link|flag
vote up 28 vote down

My teachers spent so much time teaching us that pointers are scary little goobers that can cause lots of problems if not used correctly, that they never bothered to show us how powerful they can really be.

For example, the concept of pointer arithmetic was foreign to me until I had already been using C++ for several years:

Examples:

  • c[0] is equivalent to *c
  • c[1] is equivalent to *(c + 1)
  • Loop iteration: for(char* c = str; *c != '\0'; c++)
  • and so on...

Rather than making students afraid to use pointers, teach them how to use them appropriately.

EDIT: As brought to my attention by a comment I just read on a different answer, I think there is also some value in discussing the subtle differences between pointers and arrays (and how to put the two together to facilitate some pretty complex structures), as well as how to properly use the const keyword with respect to pointer declarations.

link|flag
3  
Personally, as a teacher, I think teachers should teach BOTH. students need both to understand the power of pointers, but they also need to respect them. Beginners SHOULD be a little afraid of pointers, but not so afraid that they never use them and then actually understand them... – Brian Postow Aug 10 at 15:16
11  
@Brian: I can't disagree more. Fear keeps students from learning new things. They'll get the respect for pointers after fixing their first few memory leaks, segfaults and out-of-bounds errors, but they'll never get that far otherwise. – Paul Biggar Aug 10 at 16:53
show 5 more comments
vote up 16 vote down

They really should learn to use helper tools (i.e. anything other than the compiler).

1) Valgrind is an excellent tool. It's phenomenally easy to use and it tracks down memory leaks and memory corruption perfectly.

It'll help them understand C's memory model: what it is, what you can do, and what you shouldn't do.

2) GDB + Emacs with gdb-many-windows. Or any other integrated debugger, really.

It'll help those that are to lazy to step through the code with pencil and paper.


Not really restricted to C; here's what I think they should learn:

1) How to properly write code: How to write unmaintainable code. Reading that, I found at least three crimes I was guilty of.

Seriously, we write code for other programmers. Thus, it's more important for us to write clearly than it is to write smartly.

You say your students aren't actually programmers (they're engineers). So, they shouldn't be doing tricky things, they should focus on clear coding.

2) STFW. When I started programming (I started in Pascal, than moved to C), I did it by reading books. I spent countless hours trying to figure out how to do stuff.

Later on, I found that everything I had had to figure out had already been done by many others, and at least one of them had posted it online.

Your students are engineers; they don't have as much time to devote to programming. So, the little time they have, they should spend reading other people's code and, maybe, brushing up on idioms.


All in all, C's a pretty easy language to learn. They'll have a lot more trouble writing anything longer than a few lines than they'll have learning independent notions.

link|flag
vote up 1 vote down

Hygienic names in C macros:

#define SOME_MACRO(_x) do {     \
  int *x = (_x);                \
  ...                           \
} while(0)

Defining x this way inside a macro is dangerous, because (_x) may also expand to x, ending up with:

do {
  int *x = x;
  ...
} while(0)

which might not get any warning from your compiler, but actually initialize your x pointer with garbage (rather than the shadowed x from the outer scope).

Its important to use names that you know are unique to that macro. The C preprocessor has no mechanism to automate this, so you just have to choose ugly names for your macro-defined variables, or just avoid them for these purposes.

link|flag
vote up 2 vote down

It would be beneficial if the students were at some point exposed to tools that can help them write cleaner, better code. The tools may not all be relevant to them at this stage, but knowing what is available helps.

One should also stress the use of different (!) compilers with strict compiler warning flags and attending to each and every warning message.

link|flag
vote up 2 vote down
  1. Check the boundaries
  2. Check the boundaries,

    and of course,

  3. Check the boundaries.

And if you forgot one of these rules, use Valgrind. This applies to arrays, strings, and pointers, but it's really very easy to forget about what you're really doing when doing allocations and memory aritmethics.

link|flag
vote up 0 vote down

The compiler is not always right. Particularly when developing for embedded systems.

link|flag
vote up 10 vote down

Portability -- rarely taught or mentioned in school, but comes up a lot in the real world.

link|flag
vote up 8 vote down

Know that when you increment a pointer, the new address depends upon the size of the data pointed to by that pointer... (IE, what's the difference between a char* being incremented and an unsigned long*)...

Knowing exactly what a segmentation fault really is first of all, and also how to deal with them.

Knowing how to use GDB is great. Knowing how to use valgrind is great.

Develop a C programming style... For example, I tend to write fairly object oriented code when I write large C programs (usually, all the functions in a particular .C file accept some (1) particular struct* and operate on it... I tend to have foo* foo_create() and foo_destroy(foo*) ctor's and dtors...)...

link|flag
show 3 more comments
vote up 7 vote down

Understanding the linker. Anyone using C should understand why "static int x;" at file scope does not create a global variable. The exercise of writing a simple program where every function is in its own translation unit and compiling each separately is not done often enough in the early stages of learning C.

link|flag
vote up 5 vote down

Hope this wasn't posted before (just read through very quickly), but I think what is very important when you have to work with C, is to know about the machine representation of data. For example: IEEE 754 floating point numbers, big vs little endian, alignment of structs (here: Windows vs Linux)... To practice this, it is very useful to make some bit-puzzles (solving some problems without using a any functionality then printf to print the result, a limited number of variables and some logical operators). Also it is often useful to have a basic knowledge about how a linker works, how the whole compiling process works etc.. But especially understanding the linker (without that, it is so hard to find some kind of errors...)

The book which helped me most to improve my C and C++ skills was: http://www.amazon.com/Computer-Systems-Programmers-Randal-Bryant/dp/013034074X

I think that a deep knowledge about computer architecture makes the difference between a good and a bad C programmer (or at least it is a significant factor).

link|flag
vote up 4 vote down

Teach them unit testing.

link|flag
vote up 8 vote down

Tools are important, so I'd recommend to at least mention something about

  • Makefiles and how the build process works
  • gdb
  • lint
  • the usefulness of compiler warnings

Concerning C, I think it's important to stress that the programmer should know what "undefined behaviour" really means, i.e. to know that there could be a future problem even if it seems to work with the current compiler/platform combination.

Edit: I forgot: teach them how to search and ask proper questions on SO!

link|flag
show 1 more comment
vote up 1 vote down

An array is a pointer The differences between the * (dereferencing) and & (addressof) operators and when to use both

And emphasize that the best (and really only) real place for C these days is in embedded systems and real-time apps where resources are scarce and run-time is a factor.

I didn't really appreciate C as a language until I took my embedded microprocessors systems class and we implemented the hardware via a reading through the programmer's guide in the manual for the Motorolla Dragonball board. Consequently, if it's at all possible (which may be hard, as you'll need to get cheap hardware) try to have them work on projects similar (implementing UART and interrupt vector tables, etc)...

Because although stuff like string processing, sorting, etc are toy classical school problems, they really aren't as useful anymore, and frustrate students who know there are easier ways. It's much more rewarding to & a byte with a bit-mask and watch an LED light up.

Oh, and I never learned about how to use stuff like gcc in school, or what was actually going on with makefiles. Pragmatic Programmers say that's a good thing to know.

link|flag
show 3 more comments
vote up 7 vote down

Always active warnings. With GCC, use at least -Wall -Wextra -Wstrict-prototypes -Wwrite-strings.

I/O is difficult. scanf() is evil. gets() should never be used.

When you print something which isn't '\n'-terminated, you have to flush stdout if you want to print it immediatly, e.g.

printf("Type something: ");
fflush(stdout);
getchar();

Use const pointers whenever possible. E.g. void foo(const char* p);.

Use size_t for storing sizes.

Litteral strings generally can't be modified, so make them const. E.g. const char* p = "whatever";.

link|flag
1  
Why not include -Werror ? Else there is a temptation to neglect the warnings. – Andrew Y Aug 10 at 18:07
show 2 more comments
vote up 5 vote down

How about general best practices?

  • Always assume that someone else has already written your code and that it is both freely available on the internet and better written and tested than anything you'll produce before your deadline.
  • Return early / Avoid else clauses
  • Initialize all variables
  • One page per function as a guideline (i.e. Use smaller pieces of code together)
  • When to use switch, if-else if, or a hash table
  • Avoid global variables
  • Always check your inputs and your outputs (I don't trust my own code.)
  • Most functions should return a status

    [ To others: feel free to edit this and add to the list ]

Regarding checking inputs:

I once wrote a big program in a hurry and I wrote all kinds of Guard Clauses, input checks, into my functions. When I ran the program for the first time, the errors from those clauses streamed by so fast I couldn't even read them, but the program did not crash and could be shut down cleanly. It was then a simple matter of going through the list and fixing bugs which went surprisingly fast.

Think of Guard Clauses as run-time compiler warnings and errors.

link|flag
show 3 more comments
vote up 1 vote down

How to load tape into tape player - I am not joking, I have learned C on ZX Spectrum and every compilation required loading a compiler from a tape.

Those were times :D

link|flag
vote up 0 vote down

good portable coding concepts, programming models ( e.g. ILP32 v LP64), and expose them to different C compilers and toolchains (not all the world uses GCC)

link|flag
vote up 2 vote down
  • Where the language ends and the implementation begins: e.g., stdio.h is part of the standard library, conio.h is not, stuff like that;
  • The difference between undefined and implementation-defined behavior, and why things like x=x++ are undefined;
  • Just because it compiles doesn't mean it's right;
  • The difference between precedence and order of evaluation, and why a * b + c doesn't guarantee that a will be evaluated before b or c;
  • "It works on my machine" does not trump behavior specified by the language standard: e.g., just because void main() or x = x++ is giving you the results you expect for a specific platform and compiler doesn't mean it's okay to use;
  • Pretend you never heard of gets();
link|flag
1 2 next

Your Answer

Get an OpenID
or

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