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 0 vote down
  1. Teach them the poor man's way of debugging by introducing them to logging your code. That is, have it produce log files or print outs to your screen so they know if they've entered an infinite loop, they have gotten to different parts of their program, and so on. People come alive when their program "talks" back to them.

  2. Emphasize that you shouldn't have different control structures in your programs between code flagged as "DEBUG" and "REAL."

link|flag
vote up 0 vote down
if(constant=variable)
{
work();
}
link|flag
vote up 0 vote down

One thing I'd like to see taught by more programming professors is a little about source control. A day on any VCS: why you use it, some simple operations, version numbering, etc.

There are far too many graduates that find source control a foreign concept...it doesn't matter that they're EE's or CS majors, if they're writing code, they should know a little about version control systems.

link|flag
vote up 0 vote down

Alone semicolon is a NOP operation:

if(cond0) { /*...*/ }
else if(cond1) ;  //is correct and does nothing 
else { /*...*/}

Comma operator:

a = (++i, k);  //eq: ++i; a = k;
link|flag
vote up 0 vote down

Integer promotions rules; representation of NULL pointers; alignment; sequence points; some kind of interesting optimisations the compiler is allowed to do; what is unspecified, undefined, and implementation defined -- and what it means. Good practices are also important, and its a shame some professional coding guidelines contains some really hugely stupid things. For example: do if (foo) free(foo); instead of free(foo); when foo can be NULL while the correct advice would precisely be the opposite: do free(foo) and never if (foo) free(foo); I'm also officially sick of shitty multi-threaded code so please either tell your students how to correctly write multi-threaded programs (by giving them a subset of known and provably safe techniques and forbidding them to use anything else or to invent something themselves) or warn them its just too complicated for them. Also tell them that buffer overflows are not acceptable in any context -- and neither are stack overflows ;)

Some things are not C specific at all but please also remind them what pre/post conditions are, loop invariants, complexity... Also some fundamental metrics used in serious industries are far too rarely known (for example cyclomatic complexity is absolutely crucial, yet up to now the only people I've met knowing about it have worked on safety critical software or have learned about cyclomatic complexity ultimately from people working on safety critical software)

Back to C: take a close look at the C99 standard: you will find tons of interesting subtilities rarely known by even otherwise good programmers. The worst is that when they take something for granting for a long time (and because of poor education this can even be things that are never been true or have not been true anymore for decades) and then have to face reality when their incorrect code introduce real life bugs and security holes, they shout on compilers and, instead of saying they are sorry for their incompetence, write long stupid rants insisting on why the behavior they falsely thought being used is the only one that make sense. Exemple: overflowing arithmetic on signed integers is often believed as being two's complement (at least if the computer is), when it is indeed not mandated and even false with GCC.

Before I forget: tell them to always compile with at least -Wall -Wextra -Werror (I tend to add -Wuninitialized -Winit-self -Wswitch-enum -Wstrict-aliasing -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wold-style-definition -Wredundant-decls)

link|flag
vote up 0 vote down

Simulate objects with structures and function pointers

link|flag
vote up 1 vote down

#pragma directive, can be used to issue additional details to a processor. I worked on TI processors with C language, and this helped me a lot for defining the memory segments.

Also '__FILE__' & '__LINE__' predefined macros are very useful while debugging/logs, but I never knew this. These kind of thing should be told to students.

link|flag
vote up 0 vote down

the most important tip for a beginner Student is

Sintax in C is case Sensitive

link|flag
vote up 1 vote down
  • Using debuggers and other analysis tools (such as Valgrind etc.)
  • Optimization tricks, like Duff's device.

I'm very glad to say I was taught almost everything else that has been mentioned here (including unit testing and OOP patterns in C, really!).

link|flag
vote up 1 vote down
  • Non-procedural programming techniques including OOP patterns in C.
  • Advanced C preprocessor techniques
  • Debugging with something other than printf().
  • Complier and linker features, including building shared/dynamic objects.
  • Unit testing and mock objects, TDD in general.
link|flag
vote up 2 vote down

Indent Style. All teachers were saying that code must be indented but noone really gave directions on how to indent. I remember all students' code was really a mess.

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

Simple debug tool, printf(). If you don't have any debug tools!!

link|flag
vote up 0 vote down

That a pointer is nothing but a datatype for storing addresses, just as an int is a datatype for storing integers. When I assimilated this, everything about pointers and pointer-arithmetic just fell into place.

link|flag
vote up 1 vote down

I wish my professors had taught us how to use the debugger. Instead I fumbled through instrumenting my code with printf's trying to figure out problems. Discovering gdb was like turning on a lightbulb. Being able to debug a crash using a core dump was especially helpful since a lot of newb C programming errors usually arise from bad pointer logic.

Nowadays unit testing would probably be a good practice to teach.

link|flag
vote up 0 vote down
  • No one ever taught me how to lay out a project. In a language like C, there are often header files, code files, libraries for static & dynamic linking, etc. What goes in the header, and what goes in the code file? Should these all just be stuck into a single directory, or should they be grouped in some way?
  • If they'll be using Visual Studio, it's to avoid ever learning how to use the compiler, and what the difference is between compiling and linking.
  • Teach them how to use a build tool like make, and also why.
link|flag
vote up 0 vote down

Initialise pointers, that would otherwise be undefined, to a value that will make the program crash immediately when dereferenced (instead of overwriting of memory in some arbitrary location).

This will work as intended on most 32 bit system:

int *pInt = (int *)0xDEADBEEF

I am not sure what would be a good value on a 64 bit system.

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

While not tied directly to C I would like to have learned about the technique of using ASSERTs to catch errors early (e.g. long before some bizarre error caused by overwriting of memory). Instead I independently discovered it some years later. This technique has catched many, many bugs (including some very subtle ones) that would otherwise have gone unnoticed.

In general an assert is added whereever some assumption can be made about a value in the program, e.g. it is never negative or zero or it is larger than some other variable.

E.g.:

assert(pInt)

if it is assumed pInt will point to reasonable data. Will fire for a null pointer. Often used for pointers passed to functions.

Or

assert(pInt < pMax)

where pMax points just past the end of an integer array that pInt is operating on.

Or

assert(yMass > 57.90)

(where yMass is the mass of single charged y-ion for a peptide)

link|flag
vote up 1 vote down

An important notion in C that I did not learn from my teachers is:

Operator * does not mean "pointer to" (on the left-hand side). It is instead the dereference operator - exactly as it is on the right-hand side (yes, I know it is disturbing to some).

Thus:

int *pInt

means that when pInt is dereferenced you get an int. Thus pInt is a pointer to int. Or put differently: *pInt is an int - dereferenced pInt is an int; pInt must then be a pointer to int (otherwise we would not get an int when it is dereferenced).

This means it is not necessary to learn more complicated declarations by heart:

const char *pChar

*pChar is of type const char. Thus pChar is a pointer to const char.


char *const pChar

*const pChar is of type char. Thus const pChar is a pointer to char (pChar itself is constant).


const char *const pChar

*const pChar is of type const char. Thus const pChar is a pointer to const char (pChar itself is constant).

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

My lecturers would occasionally talk about performance, but never made mention of the cost of branching compared with other operations, it wasn't until later when I studied microprocessors that I understood this. So many times we make unnecessary branches when the same problem can be solved with a bit of bitwise manipulation, finding the position of a letter in the alphabet for instance:

if (islower(letter)) {
   pos = letter - 'a' + 1;
} else if (isupper(letter)) {
   pos = letter - 'A' + 1;
}

vs:

pos = letter & 31;

of course, ascii was designed with this sort of thing in mind, so it's not as if showing us this would've been teaching us 'bad style' or some sort of 'magical hacks'... I now find myself using bitwise tricks every day to avoid branching.

-- my 2c worth

link|flag
vote up 3 vote down

I don't think you should be teaching tools. That should be left to Java teachers. They are useful and widely used but have nothing to do with C. A debugger is as much as they should hope to get access to. Many times all you get is printf and/or a blinking LED.

Teach them pointers but teach them well, telling them that they are an integer variable representing a position in memory(in most courses they also have some training in assembly even if it is for some imaginary machine so they should be able to understand that) and not an asterisk prefixed variable that somehow points to something and that sometimes becomes an array(C is not Java). Teach them that C arrays are just pointer + index.

Have them write programs that will overflow and segfault for sure and after that, make sure they understand why it happened.

The standard library is also C, have them use it and have their programs die painfully in your private tests because of having used gets() and strcpy() or double-freed something.

Force them to deal with variables of different type, endianness(Your tests could run in a different arch), float to int conversion. Make them use masks and bitwise operators.

i.e. teach them C.

What I got instead was some batch processing in C that could as well have been done in GW-BASIC.

link|flag
vote up 1 vote down

Go over the whole programming life cycle, including what happens to your code after you're done with it.

  • Pre-planning stages, and a bit on how to look for an existing project/existing code you can use to reduce the amount of original code
  • A small (Basic) overview of licenses and how that external code affects what licenses you can and can't use (and other considerations that go into licensing)
  • Concurrent version control, and versioning. I'd do SVN/Git, but to each his own. You will save them SO MUCH time if you introduce it to them now rather than learning on the job.
  • Show them what avenues there are for open-sourcing code (Google Code, Github, etc.) and when/how to tell if it's appropriate or not.

None of this is C-specific, but I add it because I personally just went through the 'C for Electrical Engineers' at my university, and this is all stuff I had to find out on my own.

link|flag
vote up 0 vote down

The concepts of order of execution and sequence points are pretty useful, and not much discussed.

Knowing that x=x++; invokes undefined behavior is useful. Knowing why it oes can be much more educational.

Given your audience, some discussion of "volatile" might be useful, as well as other concepts in interfacing with hardware. How to handle write-only registers, that sort of thing.

link|flag
vote up 1 vote down

Besides the obvious pointer stuff, I found nobody talking about commas when I was learning C.

a= 1, b= 2 ;

Sure you use it inside of for (;;) {} statements, but nobody ever understood why, and I've never seen anybody else use it outside of for statements.

But C treats commas differently from semi-colons. for example:

"if ( a ) b= a, c= a ;"

is the same as

"if ( a ) { b= a ; c= a ; }"

and different than

"if ( a ) b= a ; c= a ;

Now, I'm not saying that the first form with commas is better, because its going to trip up programmers that don't know better, and its going to be hard to see if you use very small fonts, but there are times where you might run across this kind of code and its good to know what the language actually does.

Also, I found that if I have a lot of initialization at the top of a function,

a= 1,

b= 2,

i1= 0,

i2= 0,

i3= 0,

i4= 0,

dtmp= 0.0,

p= strtmp ;

Having all these assignments be seperated by a comma, makes them one statement, and lets me "step" in the debugger past all of them in one step, instead of eight ( or more ).

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

There are too many to name them all. Some of them are C specific; some of them are general best-practices kinds of things.

  • Learn to use the tools available
    • Revision control system. Every time it works, check it in.
    • Diff tools: diff, rdiff, meld, kdiff3, etc. Especially in conjunction with the RCS.
    • Compiler options. -Wextra -Wall __attribute__((aligned(8))), how to pack structs.
    • make: Produce debug and production versions
    • debugger: How to get and interpret a stack trace. How to set breakpoints. How to step through/over code.
    • Editor: Compile within the editor. Open multiple windows, M-x tags-query-replace (are my emacs roots showing?) etc.
    • cscope, kscope, [ce]tags, or other source browsing tools
  • Program defensively. assert(foo != NULL) in -DDEBUG; scrub user inputs.
  • Halt and Catch Fire when an error is detected. Debugging is easier when you core dump 2 lines after you detect the problem.
  • Maintain a 0-warning compile with -Wextra and -Wall enabled.
  • Don't put everything into 1 huge honking .c file.
  • Test. Test. And test some more. And check those tests in alongside your source. Because the instructor might come back and change the requirements after it's been turned in once.
link|flag
vote up 1 vote down

I used C89 in embedded programming and debugging the hardware was nightmarish. We had a few coding conventions that saved our sanities:

  1. All functions return a unique error code.
  2. All return values are auto variables passed by reference.

E.g.:

#define NOERR 0
#define VariableLookupNULL 1024
#define VariableLookupNOTFOUND 1025
... separate #define for each error
#define EvaluateExpressionNULL 1055
#define EvaluateExpressionUNKNOWNOP 1056


int EvaluateExpression( char *expression, int* result )
{
    ASSERT(result != 0);
    if (expression==0)
    	return EvaluateExpressionNULL;

    *result = 0;
    while (*expression != 0)
    {
    	switch (*expression)
    	{
    		case ' ':
    		case '\t':
    			break;	// ignore whitespace

    		case 'a':
    		... other variables
    		{
    			int var = 0;
    			int lookupResult = VariableLookup(*expression, &var);
    			if (lookupResult != NOERR)
    				return lookupResult;

    			*result += var;
    			break;
    		}

    		... check operators, et al.

    		default:
    			return EvaluateExpressionUNKNOWNOP;
    	}

    	++expression;
    }

    return NOERR;
}

ASSERT was a debug macro that would abort the runtime.

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

Given their background, perhaps a good focus on C for embedded systems, including:

  • Static analysis tools (e.g. PC-Lint)
  • MISRA-C.
  • Exposure to multiple processors (e.g. PIC, STM32) and compilers
  • How to debug.
  • Real-time issues, including interrupts, debouncing signals, simple scheduling/RTOS.
  • Software design.

And very significantly: version control software. I work in industry and use it religiously, yet I'm astounded that it was never mentioned in the course of my degree!

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

Wrap all macro parameters in parentheses.

If a macro is a statement that is more complicated than an assignment or function call, wrap it thusly:

#define M(A) do { ... (A) ... } while (0)
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
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 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
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.