vote up 43 vote down
star
61

I know there is a standard behind all C compiler implementations, so there should be no hidden features. Despite that, I am sure all C developers have hidden/secret tricks they use all the time.

flag
add comment

43 Answers

1 2 next
vote up 16 vote down
check

Function pointers. You can use a table of function pointers to implement, e.g., fast indirect-threaded code interpreters (FORTH) or byte-code dispatchers, or to simulate OO-like virtual methods.

Then there are hidden gems in the standard library, such as qsort(),bsearch(), strpbrk(), strcspn() [the latter two being useful for implementing a strtok() replacement].

A misfeature of C is that signed arithmetic overflow is undefined behavior (UB). So whenever you see an expression such as x+y, both being signed ints, it might potentially overflow and cause UB.

link|flag
13 
But if they had specified behaviour on overflow, it would have made it very slow on architectures where that was not the normal behaviour. Very low runtime overhead has always been a design goal of C, and that has meant that a lot of things like this are undefined. – Mark Baker Oct 17 at 8:38
4 
I'm very well aware of why overflow is UB. It is still a misfeature, because the standard should have at least provided library routines that can test for arithmetic overflow (of all basic operations) w/o causing UB. – zvrba Jan 20 at 20:51
2 
I said that the standard should have provided library support for checking for arithmetic overflow. Now, how can a library routine incur a performance hit if you never use it? – zvrba Jun 12 at 18:52
2 
A big negative is that GCC does not have a flag to catch signed integer overflows and throw a runtime exception. While there are x86 flags for detecting such cases, GCC does not utilize them. Having such a flag would allow non-performance-critical (especially legacy) applications the benefit of security with minimal to no code review and refactoring. – Andrew Keeton Jun 22 at 0:23
add / show 2 more comments
vote up 47 vote down

More of a trick of the GCC compiler, but you can give branch indication hints to the compiler (common in the Linux kernel)

#define likely(x)       __builtin_expect((x),1)
#define unlikely(x)     __builtin_expect((x),0)

see: http://kerneltrap.org/node/4705

What I like about this is that it also adds some expressiveness to some functions.

void foo(int arg)
{
     if (unlikely(arg == 0)) {
           do_this();
           return;
     }
     do_that();
     ...
}
link|flag
add / show 1 more comment
vote up 36 vote down
int8_t
int16_t
int32_t
uint8_t
uint16_t
uint32_t

These are an optional item in the standard, but it must be a hidden feature, because people are constantly redefining them. One code base I've worked on (and still do, for now) has multiple redefinitions, all with different identifiers. Most of the time it's with preprocessor macros:

#define INT16 short
#define INT32  long

And so on. It makes me want to pull my hair out. Just use the freaking standard integer typedefs!

link|flag
1 
They are an optional part of C99, but I know of no compiler vendors that don't implement this. – Ben Collins Sep 25 at 21:07
1 
@Pete, if you want to be anal: (1) This thread has nothig to do with any Microsoft product. (2) This thread never had anything to do with C++ at all. (3) There is no such thing as C++ 97. – Ben Collins Mar 1 at 21:20
2 
Have a look at azillionmonkeys.com/qed/pstdint.h -- a close-to-portable stdint.h – gnud Apr 16 at 14:16
1 
@gnud: thanks for the tip, but my whole gripe is that it isn't necessary - most compilers implement the standard typedefs. The only compiler I've ever used that didn't was an old version of GCC adapted for embedded VxWorks development (old, like, GCC 2.7). – Ben Collins Apr 16 at 21:56
add / show 3 more comments
vote up 28 vote down

Interlacing structures like Duff's Device:

strcpy(to, from, count)
char *to, *from;
int count;
{
    int n = (count + 7) / 8;
    switch (count % 8) {
    case 0: do { *to = *from++;
    case 7:      *to = *from++;
    case 6:      *to = *from++;
    case 5:      *to = *from++;
    case 4:      *to = *from++;
    case 3:      *to = *from++;
    case 2:      *to = *from++;
    case 1:      *to = *from++;
               } while (--n > 0);
    }
}
link|flag
add / show 6 more comments
vote up 24 vote down

The comma operator isn't widely used. It can certainly be abused, but it can also be very useful. This use is the most common one:

for (int i=0; i<10; i++, doSomethingElse())
{
  /* whatever */
}

But you can use this operator anywhere. Observe:

int j = (printf("Assigning variable j\n"), getValueFromSomewhere());

Each statement is evaluated, but the value of the expression will be that of the last statement evaluated.

link|flag
add / show 2 more comments
vote up 18 vote down

initializing structure to zero

struct mystruct a = {0};

this will zero all stucture elements.

link|flag
1 
@simonn, no it doesn't do undefined behavior if the structure contains non-integral types. memset with 0 on the memory of a float/double will still be zero when you interpret the float/double (float/double are designed like that on purpose). – Trevor Boyd Smith Jun 11 at 13:59
add / show 5 more comments
vote up 16 vote down

C has a standard but not all C compilers are fully compliant (I've not seen any fully compliant C99 compiler yet!).

That said, the tricks I prefer are those that are non-obvious and portable across platforms as they rely on the C semantic. They usually are about macros or bit arithmetic.

For example: swapping two unsigned integer without using a temporary variable:

...
a ^= b ; b ^= a; a ^=b;
...

or "extending C" to represent finite state machines like:

FSM {
  STATE(x) {
    ...
    NEXTSTATE(y);
  }

  STATE(y) {
    ...
    if (x == 0) 
      NEXTSTATE(y);
    else 
      NEXTSTATE(x);
  }
}

that can be achieved with the following macros:

#define FSM
#define STATE(x)      s_##x :
#define NEXTSTATE(x)  goto s_##x

In general, though, I don't like the tricks that are clever but make the code unnecessarily complicated to read (as the swap example) and I love the ones that make the code clearer and directly conveying the intention (like the FSM example).

link|flag
5 
C supports chaining, so you can do a ^= b ^= a ^= b; – OJ Sep 25 at 10:06
3 
Strictly speaking, the state example is a tick of the preprocessor, and not the C language - it is possible to use the former without the latter. – Greg Whitfield Sep 25 at 13:10
7 
OJ: actually what you suggest is undefined behavior because of sequence point rules. It may work on most compilers, but is not correct or portable. – Evan Teran Sep 25 at 14:14
3 
Xor swap could actually be less efficient in the case of a free register. Any decent optimizer would make the temp variable be a register. Depending on implementation (and need for parallelism support) the swap might actually use real memory instead of a register (which would be the same). – Paul de Vrieze Oct 17 at 9:49
9 
please don't ever actually do this: en.wikipedia.org/wiki/… – Gorgapor Jan 2 at 18:55
add / show 1 more comment
vote up 14 vote down

I never used bit fields but they sound cool for ultra-low-level stuff.

struct cat {
    unsigned int legs:3;  // 3 bits for legs (0-4 fit in 3 bits)
    unsigned int lives:4; // 4 bits for lives (0-9 fit in 4 bits)
    // ...
};

cat make_cat()
{
    cat kitty;
    kitty.legs = 4;
    kitty.lives = 9;
    return kitty;
}

This means that sizeof(cat) can be as small as sizeof(char).


Incorporated comments by Aaron and leppie, thanks guys.

link|flag
5 
Bitfields are indeed portable as long as you treat them as the structure elements they are, and not "pieces of integers." Size, not location, matters in an embedded system with limited memory, as each bit is precious ... but most of today's coders are too young to remember that. :-) – Adam Liss Oct 26 at 0:41
add / show 5 more comments
vote up 13 vote down

anonymous structures and arrays is my favourite one. (cf. http://www.run.montefiore.ulg.ac.be/~martin/resources/kung-f00.html)

setsockopt(yourSocket, SOL_SOCKET, SO_REUSEADDR, (int[]){1}, sizeof(int));

or

void myFunction(type* values) {
    while(*values) x=*values++;
}
myFunction((type[]){val1,val2,val3,val4,0});

it can even be used to instanciate linked lists...

link|flag
add / show 2 more comments
vote up 13 vote down

I'm very fond of designated initializers, added in C99 (and supported in gcc for a long time):

#define FOO 16
#define BAR 3

myStructType_t myStuff[] = {
    [FOO] = { foo1, foo2, foo3 },
    [BAR] = { bar1, bar2, bar3 },
    ...

The array initialization is no longer position dependent. If you change the values of FOO or BAR, the array initialization will automatically correspond to their new value.

link|flag
add / show 1 more comment
vote up 12 vote down

Well... I think that one of the strong points of C language is its portability and standardness, so whenever I find some "hidden trick" in the implementation I am currently using, I try not to use it becasue I try to keep my C code as standard and portable as possible.

link|flag
add / show 1 more comment
vote up 11 vote down

gcc has a number of extensions to the C language that I enjoy, which can be found here. Some of my favorites are function attributes. One extremely useful example is the format attribute. This can be used if you define a custom function that takes a printf format string. If you enable this function attribute, gcc will do checks on your arguments to ensure that your format string and arguments match up and will generate warnings or errors as appropriate.

int my_printf (void *my_object, const char *my_format, ...)
            __attribute__ ((format (printf, 2, 3)));
link|flag
add comment
vote up 11 vote down

Multi-character constants:

int x = 'ABCD';

This sets x to 0x41424344.

EDIT: This technique is not portable, especially if you serialize the int. However, it can be extremely useful to create self-documenting enums. e.g.

enum state {
    stopped = 'STOP',
    running = 'RUN!',
    waiting = 'WAIT',
};

This makes it much simpler if you're looking at a raw memory dump and need to determine the value of an enum without having to look it up.

link|flag
add / show 8 more comments
vote up 9 vote down

using INT(3) to set break point at the code is my all time favorite

link|flag
add / show 5 more comments
vote up 9 vote down

Well, I've never used it, and I'm not sure whether I'd ever recommend it to anyone, but I feel this question would be incomplete without a mention of Simon Tatham's co-routine trick.

link|flag
add comment
vote up 6 vote down

Struct assignment is cool. Many people don't seem to realize that structs are values too, and can be assigned around, there is no need to use memcpy(), when a simple assignment does the trick.

For example, consider some imaginary 2D graphics library, it might define a type to represent an (integer) screen coordinate:

typedef struct {
   int x;
   int y;
} Point;

Now, you do things that might look "wrong", like write a function that creates a point initialized from function arguments, and returns it, like so:

Point point_new(int x, int y)
{
  Point p;
  p.x = x;
  p.y = y;
  return p;
}

This is safe, as long (of course) as the return value is copied by value using struct assignment:

Point origin;
origin = Point(0, 0);

In this way you can write quite clean and object-oriented-ish code, all in plain standard C.

link|flag
add / show 4 more comments
vote up 5 vote down

C compilers implement one of several standards. However, having a standard does not mean that all aspects of the language are defined. Duff's device, for example, is a favorite 'hidden' feature that has become so popular that modern compilers have special purpose recognition code to ensure that optimization techniques do not clobber the desired effect of this often used pattern.

In general hidden features or language tricks are discouraged as you are running on the razor edge of whichever C standard(s) your compiler uses. Many such tricks do not work from one compiler to another, and often these kinds of features will fail from one version of a compiler suite by a given manufacturer to another version.

Various tricks that have broken C code include:

  1. Relying on how the compiler lays out structs in memory.
  2. Assumptions on endianness of integers/floats.
  3. Assumptions on function ABIs.
  4. Assumptions on the direction that stack frames grow.
  5. Assumptions about order of execution within statements.
  6. Assumptions about order of execution of statements in function arguments.
  7. Assumptions on the bit size or precision of short, int, long, float and double types.

Other problems and issues that arise whenever programmers make assumptions about execution models that are all specified in most C standards as 'compiler dependent' behavior.

link|flag
add / show 1 more comment
vote up 5 vote down

Strange vector indexing:

int v[100]; int index = 10; 
/* v[index] it's the same thing as index[v] */
link|flag
1 
It's even better... char c = 2["Hello"]; (c == 'l' after this). – yrp Sep 25 at 10:20
1 
Not so strange when you consider that v[index] == *(v + index) and index[v] == *(index + v) – Ferruccio Sep 25 at 14:36
2 
Please tell me you don't actually use this "all the time", like the question asks! – Tryke Sep 25 at 20:52
add comment
vote up 4 vote down

My favorite "hidden" feature of C, is the usage of %n in printf to write back to the stack. Normally printf pops the parameter values from the stack based on the format string, but %n can write them back.

Check out section 3.4.2 here. Can lead to a lot of nasty vulnerabilities.

link|flag
add comment
vote up 4 vote down

When initializing arrays or enums, you can put a comma after the last item in the initializer list. e.g:

int x[] = { 1, 2, 3, };

enum foo { bar, baz, boom, };

This was done so that if you're generating code automatically you don't need to worry about eliminating the last comma.

link|flag
add / show 1 more comment
vote up 4 vote down

C99 has some awesome any-order structure initialization.

struct foo{
int x;
int y;
char* name;
};

void main(){
foo f = { .y = 23, .name = "awesome", .x = -38 };
}

link|flag
add comment
vote up 3 vote down

Early versions of gcc attempted to run a game whenever it encountered "#pragma" in the source code. See also here.

link|flag
add comment
vote up 3 vote down

Variable size automatic variables are also useful in some cases. These were added i nC99 and have been supported in gcc for a long time.

void foo(uint32_t extraPadding) {
    uint8_t commBuffer[sizeof(myProtocol_t) + extraPadding];

You end up with a buffer on the stack with room for the fixed-size protocol header plus variable size data. You can get the same effect with alloca(), but this syntax is more compact.

You have to make sure extraPadding is a reasonable value before calling this routine, or you end up blowing the stack. You'd have to sanity check the arguments before calling malloc or any other memory allocation technique, so this isn't really unusual.

link|flag
add / show 1 more comment
vote up 3 vote down

I liked the variable sized structures you could make:

typedef struct {
    unsigned int size;
    char buffer[1];
} tSizedBuffer;

tSizedBuffer *buff = (tSizedBuffer*)(malloc(sizeof(tSizedBuffer) + 99));

// can now refer to buff->buffer[0..99].

Also the offsetof macro which is now in ANSI C but was a piece of wizardry the first time I saw it. It basically uses the address-of operator (&) for a null pointer recast as a structure variable.

link|flag
add comment
vote up 3 vote down

For the C99 inclined, here is some sugar:

// function wants a non-null pointer to at least
// 10 integers
void fun(int t[static 10]) { ... }

Little known. It is in particular useful to get the most speed out of the code: The compiler can pre-fetch the integers before running the functions' code or do any other optimizations.


Another thing is inline definitions, also for C99 inclined. They allow having different definitions for a function:

private.h - library internal header

inline void doit(stuff *p) {
    /* this include file is only included by our lib internally as a more 
     * efficient implementation. We will avoid some expensive checks and use 
     * some internal knowledge of *p */  
    ...
}

You can include that file into your library code. And you are also allowed to include the public header, of course, if it becomes necessary because you need some declaration in it. The choice whether to call the public or private inline function is open to the compiler at the end. But it can prefer the inline definition if it wants. If it doesn't, it doesn't hurt either (more checking isn't going to hurt). For the public API, you can supply functions that employ more checking of their arguments:

functions.h - public header

void doit(stuff *p);

That's the public header, where no inline definition appears. Calls to the function will use the external definition in some c-file.

link|flag
add comment
vote up 2 vote down

Compile-time assertions, as already discussed here.

//--- size of static_assertion array is negative if condition is not met
#define STATIC_ASSERT(condition) \
    typedef struct { \
        char static_assertion[condition ? 1 : -1]; \
    } static_assertion_t

//--- ensure structure fits in 
STATIC_ASSERT(sizeof(mystruct_t) <= 4096);
link|flag
add comment
vote up 2 vote down

C99-style variable argument macros, aka

#define ERR(name, fmt, ...)   fprintf(stderr, "ERROR " #name ": " fmt "\n", \
                                  __VAR_ARGS__)

which would be used like

ERR(errCantOpen, "File %s cannot be opened", filename);

Here I also use the stringize operator and string constant concatentation, other features I really like.

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

Say you have a struct with members of the same type:

struct Point {
    float x;
    float y;
    float z;
};

You can cast instances of it to a float pointer and use array indices:

Point a;
int sum = 0, i = 0;
for( ; i < 3; i++)
    sum += ((float*)a)[i];

Pretty elementary, but useful when writing concise code.

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

Not really a hidden feature, but it looked to me like voodoo, the first time I saw something like this:


void callback(const char *msg, void *data)
{
    // do something with msg, e.g.
    printf("%s\n", msg);

    return;
    data = NULL;
}

The reason for this construction is, that if you compile this with -Wextra and without the "data = NULL;"-line, gcc will spit out a warning about unused parameters. But with this useless line you don't get a warning.

EDIT: I know there are other (better) ways to prevent those warnings. It just looked strange to me, the first time I saw this.

link|flag
2 
As apposed to using the non-portable attribute syntax. You can just put: (void)data; in the function. I usually put it directly after any locals (as they must be first in c89). I also tend to just make a macro like this: #define UNUSED(x) (void)x so I can just write: UNUSED(data). – Evan Teran Sep 25 at 14:20
add / show 8 more comments
vote up 1 vote down

I got shown this in a bit of code once, and asked what it did:


hexDigit = "0123456789abcdef"[someNybble];

Another favorite is:


unsigned char bar[100];
unsigned char *foo = bar;
unsigned char blah = 42[foo];
link|flag
add / show 4 more comments
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.