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.
|
79
|
|
|
|
|
|
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. |
|||
|
|
|
|
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:
|
|||
|
|
Here's three nice ones in gcc:
|
|||
|
|
|
|
register variablesI used to declare some variables with the |
||||||||
|
|
|
Excerpt:
|
|||
|
|
|
|
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!
|
|||
|
|
|
|
Wrap malloc and realloc like this:
In fact, here is my full arsenol (The BailIfNot is for OO c):
Here is some example output:
|
||||
|
|
|
I just read this article. It has some C and several other languages "hidden features". |
|||
|
|
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 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. |
|||
|
|
|
|
For clearing the input buffer you can't use |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
Compile-time assumption-checking using enums: Stupid example, but can be really useful for libraries with compile-time configurable constants.
|
|||
|
|
