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.
|
81
|
|
|
|
|
|
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. |
|||
|
|
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 |
|||
|
|
|
|
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. |
||||
|
|
|
C99 has some awesome any-order structure initialization.
|
|||
|
|
|
|
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!
|
|||
|
|
|
|
Here's three nice ones in gcc:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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.
|
|||
|
|
