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
|
|
|
|
|
|
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'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. |
|||
|
|
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.
|
|||
|
|
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:
|
|||
|
|
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. |
||||||||
|
|
|
I never used bit fields but they sound cool for ultra-low-level stuff.
This means that |
||||||||||||||||
|
|
|
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... |
|||
|
|
Strange vector indexing:
|
||||||||||||
|
|
|
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. |
|||
|
|
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). |
||||||||||||||||||||
|
|
|
Early versions of gcc attempted to run a game whenever it encountered "#pragma" in the source code. See also here. |
|||
|
|
|
|
Interlacing structures like Duff's Device:
|
||||||||
|
|
|
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. |
|||
|
|
using INT(3) to set break point at the code is my all time favorite |
||||||||||||
|
