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.
|
82
|
|
|
|
|
|
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. |
||||||||||||||||||||
|
|
|
More of a trick of the GCC compiler, but you can give branch indication hints to the compiler (common in the Linux kernel)
see: http://kerneltrap.org/node/4705 What I like about this is that it also adds some expressiveness to some functions.
|
|||
|
|
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:
And so on. It makes me want to pull my hair out. Just use the freaking standard integer typedefs! |
||||||||||||||||||||
|
|
|
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:
But you can use this operator anywhere. Observe:
Each statement is evaluated, but the value of the expression will be that of the last statement evaluated. |
||||||||
|
|
|
Interlacing structures like Duff's Device:
|
||||||||
|
|
|
initializing structure to zero
this will zero all stucture elements. |
||||||||||||
|
|
|
I'm very fond of designated initializers, added in C99 (and supported in gcc for a long time):
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. |
|||
|
|
I never used bit fields but they sound cool for ultra-low-level stuff.
This means that |
||||||||||||||||
|
|
|
Multi-character constants:
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.
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. |
||||||||
|
|
|
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:
or "extending C" to represent finite state machines like:
that can be achieved with the following macros:
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). |
||||||||||||||||||||
|
|
|
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 because I try to keep my C code as standard and portable as possible. |
|||
|
|
anonymous structures and arrays is my favourite one. (cf. http://www.run.montefiore.ulg.ac.be/~martin/resources/kung-f00.html)
or
it can even be used to instanciate linked lists... |
|||
|
|
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.
|
|||
|
|
|
|
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. |
|||
|
|
|
|
using INT(3) to set break point at the code is my all time favorite |
||||||||||||
|
|
|
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 For example, consider some imaginary 2D graphics library, it might define a type to represent an (integer) screen coordinate:
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:
This is safe, as long (of course) as the return value is copied by value using struct assignment:
In this way you can write quite clean and object-oriented-ish code, all in plain standard C. |
||||
|
|
|
Compile-time assertions, as already discussed here.
|
|||
|
|
|
|
When initializing arrays or enums, you can put a comma after the last item in the initializer list. e.g:
This was done so that if you're generating code automatically you don't need to worry about eliminating the last comma. |
|||
|
|
C99 has some awesome any-order structure initialization.
|
|||
|
|
|
|
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:
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. |
|||
|
|
Strange vector indexing:
|
||||||||||||
|
|
|
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.
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. |
|||
|
|
I liked the variable sized structures you could make:
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
For the C99 inclined, here is some sugar:
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 private.h - library internal header
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
That's the public header, where no inline definition appears. Calls to the function will use the external definition in some c-file. |
|||
|
|
|
|
Early versions of gcc attempted to run a game whenever it encountered "#pragma" in the source code. See also here. |
|||
|
|
|
|
Not really a hidden feature, but it looked to me like voodoo, the first time I saw something like this:
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. |
||||
|
|
|
I got shown this in a bit of code once, and asked what it did:
Another favorite is:
|
|||
|
|
C99-style variable argument macros, aka
which would be used like
Here I also use the stringize operator and string constant concatentation, other features I really like. |
|||
|
|
Gcc (c) has some fun features you can enable, such as nested function declarations, and the a?:b form of the ?: operator, which returns a if a is not false. -Alex |
|||
|
|
