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. |
||||||||||||||||||||
|
|
|
Compile-time assumption-checking using enums: Stupid example, but can be really useful for libraries with compile-time configurable constants.
|
|||
|
|
|
|
I only discovered this after 15+ years of C programming:
Bitfields! The number after the colon is the number of bits the member requires, with members packed into the specified type, so the above would look like the following if unsigned is 16 bits:
Skizz |
|||
|
|
|
|
Use NaN for chained calculations / error return : //#include <stdint.h> An inner function can return NaN as an error flag : it can safely be used in any calculation, and the result will always be NaN. note : testing for NaN is tricksy, since NaN != NaN... use isnan(x), or roll your own. |
|||
|
|
|
|
For clearing the input buffer you can't use |
|||
|
|
|
|
the (hidden) feature that "shocked" me when I first saw is about printf. this feature allows you to use variables for formatting format specifiers themselves. look for the code, you will see better:
the * character achieves this effect. |
|||
|
|
|
|
I like the typeof() operator. It works like sizeof() in that it is resolved at compile time. Instead of returning the number of bytes, it returns the type. This is useful when you need to declare a variable to be the same type as some other variable, whatever type it may be.
This might be just a gcc extension, I'm not sure. |
|||
|
|
|
|
Object oriented C macros: You need a constructor (init), a destructor (dispose), an equal (equal), a copier (copy), and some prototype for instantiation (prototype). With the declaration, you need to declare a constant prototype to copy and derive from. Then you can do
|
|||
|
|
|
|
I just read this article. It has some C and several other languages "hidden features". |
|||
|
|
Wrap malloc and realloc like this:
In fact, here is my full arsenol (The BailIfNot is for OO c):
Here is some example output:
|
||||
|
|
|
Here's three nice ones in gcc:
|
|||
|
|
Variable-sized structs, seen in common resolver libs among other places.
struct foo
{
int a;
int b;
char b[1]; // using [0] is no longer correct
// must come at end
};
char *str = "abcdef";
int len = strlen(str);
struct foo *bar = malloc(sizeof(foo) + len);
strcpy(bar.b, str); // try and stop me!
|
|||
|
|
|
|
C99 has some awesome any-order structure initialization.
|
|||
|
|
|
|
Say you have a struct with members of the same type:
You can cast instances of it to a float pointer and use array indices:
Pretty elementary, but useful when writing concise code. |
||||
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
Excerpt:
|
|||
|
|
|
|
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. |
|||
|
|
Compile-time assertions, as already discussed here.
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||||
|
|
|
initializing structure to zero
this will zero all stucture elements. |
||||||||||||
|
|
|
register variablesI used to declare some variables with the |
||||||||
|
|
|
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.
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Conversion of types by using unusual typecasts. Though not hidden feature, its quite tricky. Example: If you needed to know how compiler stores float, just try this:
or
Note the clever use of typecasts. Converting address of variable (here &flt) to desired type (here (uint32_t * )) and extracting its content (applying '*'). This works other side of expression as well:
This could also be accomplished using union:
|
||||
|
|
|
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. |
||||||||
|
|
|
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! |
||||||||||||||||||||
|
