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
|
|
|
|
|
|
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. |
||||
|
|
|
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 (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. |
|||
|
|
|
|
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.
|
|||
|
|
