Hidden features of C - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T23:10:18Zhttp://stackoverflow.com/feeds/question/132241http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/132241/hidden-features-of-c54Hidden features of Cbernardn2008-09-25T09:02:06Z2009-11-11T13:42:11Z
<p>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.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132259#1322599Answer by Dror Helper for Hidden features of CDror Helper2008-09-25T09:06:39Z2008-09-25T09:06:39Z<p>using INT(3) to set break point at the code is my all time favorite</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132269#13226915Answer by Giacomo Degli Esposti for Hidden features of CGiacomo Degli Esposti2008-09-25T09:10:07Z2009-11-03T15:00:04Z<p>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.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132274#13227431Answer by ComSubVie for Hidden features of CComSubVie2008-09-25T09:12:30Z2009-03-03T08:21:05Z<p>Interlacing structures like <a href="http://en.wikipedia.org/wiki/Duffs%5Fdevice" rel="nofollow">Duff's Device</a>:</p>
<pre><code>strcpy(to, from, count)
char *to, *from;
int count;
{
int n = (count + 7) / 8;
switch (count % 8) {
case 0: do { *to = *from++;
case 7: *to = *from++;
case 6: *to = *from++;
case 5: *to = *from++;
case 4: *to = *from++;
case 3: *to = *from++;
case 2: *to = *from++;
case 1: *to = *from++;
} while (--n > 0);
}
}
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132276#1322763Answer by Sec for Hidden features of CSec2008-09-25T09:14:22Z2008-09-25T09:14:22Z<p>Early versions of gcc attempted to run a game whenever it encountered "#pragma" in the source code. See also <a href="http://everything2.com/e2node/%2523pragma" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132290#13229017Answer by Remo.D for Hidden features of CRemo.D2008-09-25T09:20:57Z2008-09-25T09:20:57Z<p>C has a standard but not all C compilers are fully compliant (I've not seen any fully compliant C99 compiler yet!).</p>
<p>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.</p>
<p>For example: swapping two unsigned integer without using a temporary variable:</p>
<pre><code>...
a ^= b ; b ^= a; a ^=b;
...
</code></pre>
<p>or "extending C" to represent finite state machines like:</p>
<pre><code>FSM {
STATE(x) {
...
NEXTSTATE(y);
}
STATE(y) {
...
if (x == 0)
NEXTSTATE(y);
else
NEXTSTATE(x);
}
}
</code></pre>
<p>that can be achieved with the following macros:</p>
<pre><code>#define FSM
#define STATE(x) s_##x :
#define NEXTSTATE(x) goto s_##x
</code></pre>
<p>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).</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132306#1323065Answer by Kevin S. for Hidden features of CKevin S.2008-09-25T09:26:19Z2008-09-25T09:26:19Z<p>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.</p>
<p>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.</p>
<p>Various tricks that have broken C code include:</p>
<ol>
<li>Relying on how the compiler lays out structs in memory.</li>
<li>Assumptions on <em>endianness</em> of integers/floats.</li>
<li>Assumptions on function ABIs.</li>
<li>Assumptions on the direction that stack frames grow.</li>
<li>Assumptions about order of execution within statements.</li>
<li>Assumptions about order of execution of statements in function arguments.</li>
<li>Assumptions on the bit size or precision of short, int, long, float and double types.</li>
</ol>
<p>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.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132314#1323144Answer by Iulian Șerbănoiu for Hidden features of CIulian Șerbănoiu2008-09-25T09:30:28Z2008-09-25T09:30:28Z<p>Strange vector indexing:</p>
<pre><code>int v[100]; int index = 10;
/* v[index] it's the same thing as index[v] */
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132469#13246914Answer by sylvainulg for Hidden features of Csylvainulg2008-09-25T10:16:48Z2008-09-25T10:16:48Z<p>anonymous structures and arrays is my favourite one. (cf. <a href="http://www.run.montefiore.ulg.ac.be/~martin/resources/kung-f00.html" rel="nofollow">http://www.run.montefiore.ulg.ac.be/~martin/resources/kung-f00.html</a>)</p>
<pre><code>setsockopt(yourSocket, SOL_SOCKET, SO_REUSEADDR, (int[]){1}, sizeof(int));
</code></pre>
<p>or </p>
<pre><code>void myFunction(type* values) {
while(*values) x=*values++;
}
myFunction((type[]){val1,val2,val3,val4,0});
</code></pre>
<p>it can even be used to instanciate linked lists...</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132509#13250920Answer by zvrba for Hidden features of Czvrba2008-09-25T10:29:18Z2008-09-25T10:29:18Z<p>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.</p>
<p>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].</p>
<p>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.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132558#13255817Answer by Motti for Hidden features of CMotti2008-09-25T10:44:09Z2008-09-28T06:05:09Z<p>I never used <a href="http://en.wikipedia.org/wiki/Bit_field" rel="nofollow">bit fields</a> but they sound cool for ultra-low-level stuff.</p>
<pre><code>struct cat {
unsigned int legs:3; // 3 bits for legs (0-4 fit in 3 bits)
unsigned int lives:4; // 4 bits for lives (0-9 fit in 4 bits)
// ...
};
cat make_cat()
{
cat kitty;
kitty.legs = 4;
kitty.lives = 9;
return kitty;
}
</code></pre>
<p>This means that <code>sizeof(cat)</code> can be as small as <code>sizeof(char)</code>.</p>
<p><hr /></p>
<p>Incorporated comments by <a href="http://stackoverflow.com/users/14153/aaron">Aaron</a> and <a href="http://stackoverflow.com/users/15541/leppie">leppie</a>, thanks guys.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132702#13270217Answer by Ferruccio for Hidden features of CFerruccio2008-09-25T11:21:37Z2009-06-22T19:08:33Z<p>Multi-character constants:</p>
<pre><code>int x = 'ABCD';
</code></pre>
<p>This sets x to 0x41424344.</p>
<p>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.</p>
<pre><code>enum state {
stopped = 'STOP',
running = 'RUN!',
waiting = 'WAIT',
};
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/132844#1328441Answer by Andrew Edgecombe for Hidden features of CAndrew Edgecombe2008-09-25T11:57:47Z2008-10-03T22:01:25Z<p>I got shown this in a bit of code once, and asked what it did:</p>
<pre><code>
hexDigit = "0123456789abcdef"[someNybble];
</code></pre>
<p>Another favorite is:</p>
<pre><code>
unsigned char bar[100];
unsigned char *foo = bar;
unsigned char blah = 42[foo];
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/133118#1331181Answer by quinmars for Hidden features of Cquinmars2008-09-25T12:49:09Z2008-09-25T21:29:39Z<p>Not really a hidden feature, but it looked to me like voodoo, the first time I saw something like this:</p>
<pre><code>
void callback(const char *msg, void *data)
{
// do something with msg, e.g.
printf("%s\n", msg);
return;
data = NULL;
}
</code></pre>
<p>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.</p>
<p>EDIT: I know there are other (better) ways to prevent those warnings. It just looked strange to me, the first time I saw this.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/133555#13355557Answer by tonylo for Hidden features of Ctonylo2008-09-25T14:08:29Z2008-09-25T14:08:29Z<p>More of a trick of the GCC compiler, but you can give branch indication hints to the compiler (common in the Linux kernel)</p>
<pre><code>#define likely(x) __builtin_expect((x),1)
#define unlikely(x) __builtin_expect((x),0)
</code></pre>
<p>see: <a href="http://kerneltrap.org/node/4705" rel="nofollow">http://kerneltrap.org/node/4705</a></p>
<p>What I like about this is that it also adds some expressiveness to some functions.</p>
<pre><code>void foo(int arg)
{
if (unlikely(arg == 0)) {
do_this();
return;
}
do_that();
...
}
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/133590#13359017Answer by DGentry for Hidden features of CDGentry2008-09-25T14:15:22Z2008-09-25T14:15:22Z<p>I'm very fond of designated initializers, added in C99 (and supported in gcc for a long time):</p>
<pre><code>#define FOO 16
#define BAR 3
myStructType_t myStuff[] = {
[FOO] = { foo1, foo2, foo3 },
[BAR] = { bar1, bar2, bar3 },
...
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/133646#1336464Answer by DGentry for Hidden features of CDGentry2008-09-25T14:23:20Z2008-09-25T14:23:20Z<p>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.</p>
<pre><code>void foo(uint32_t extraPadding) {
uint8_t commBuffer[sizeof(myProtocol_t) + extraPadding];
</code></pre>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/133714#13371447Answer by Ben Collins for Hidden features of CBen Collins2008-09-25T14:31:30Z2008-09-25T14:31:30Z<pre><code>int8_t
int16_t
int32_t
uint8_t
uint16_t
uint32_t
</code></pre>
<p>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:</p>
<pre><code>#define INT16 short
#define INT32 long
</code></pre>
<p>And so on. It makes me want to pull my hair out. <strong><em>Just use the freaking standard integer typedefs!</em></strong></p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/133753#13375335Answer by Ben Collins for Hidden features of CBen Collins2008-09-25T14:37:22Z2008-09-25T14:37:22Z<p>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:</p>
<pre><code>for (int i=0; i<10; i++, doSomethingElse())
{
/* whatever */
}
</code></pre>
<p>But you can use this operator anywhere. Observe:</p>
<pre><code>int j = (printf("Assigning variable j\n"), getValueFromSomewhere());
</code></pre>
<p>Each statement is evaluated, but the value of the expression will be that of the last statement evaluated.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/135336#1353362Answer by yogeesh for Hidden features of Cyogeesh2008-09-25T19:10:38Z2009-06-22T00:07:40Z<p>Conversion of types by using unusual typecasts. Though not hidden feature, its quite tricky.</p>
<p>Example:</p>
<p>If you needed to know how compiler stores float, just try this:</p>
<pre><code>uint32_t Int;
float flt = 10.5; // say
Int = *(uint32_t *)&flt;
printf ("Float 10.5 is stored internally as %8X\n", Int);
</code></pre>
<p>or</p>
<pre><code>float flt = 10.5; // say
printf ("Float 10.5 is stored internally as %8X\n", *(uint32_t *)&flt);
</code></pre>
<p>Note the clever use of typecasts. Converting address of variable (here &flt) to desired type (here (uint32_t * )) and extracting its content (applying '*').</p>
<p>This works other side of expression as well:</p>
<pre><code>*(float *)&Int = flt;
</code></pre>
<p>This could also be accomplished using union:</p>
<pre><code>typedef union
{
uint32_t Int;
float flt;
} FloatInt_type;
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/138075#1380754Answer by paxdiablo for Hidden features of Cpaxdiablo2008-09-26T06:56:18Z2008-09-26T06:56:18Z<p>I liked the variable sized structures you could make:</p>
<pre><code>typedef struct {
unsigned int size;
char buffer[1];
} tSizedBuffer;
tSizedBuffer *buff = (tSizedBuffer*)(malloc(sizeof(tSizedBuffer) + 99));
// can now refer to buff->buffer[0..99].
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/141699#1416994Answer by Sridhar Iyer for Hidden features of CSridhar Iyer2008-09-26T20:18:15Z2008-09-26T20:18:15Z<p>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. </p>
<p>Check out section 3.4.2 <a href="http://doc.bughunter.net/format-string/exploit-fs.html" rel="nofollow">here</a>. Can lead to a lot of nasty vulnerabilities.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/147075#14707514Answer by Russell Bryant for Hidden features of CRussell Bryant2008-09-29T00:27:06Z2008-09-29T00:27:06Z<p>gcc has a number of extensions to the C language that I enjoy, which can be found <a href="http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/index.html#toc_C-Extensions" rel="nofollow">here</a>. Some of my favorites are <a href="http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Function-Attributes.html#Function-Attributes" rel="nofollow">function attributes</a>. 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.</p>
<pre><code>int my_printf (void *my_object, const char *my_format, ...)
__attribute__ ((format (printf, 2, 3)));
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/147107#1471070Answer by Mark Stock for Hidden features of CMark Stock2008-09-29T00:39:33Z2008-09-29T00:39:33Z<h2>register variables</h2>
<p>I used to declare some variables with the <strong><code>register</code></strong> keyword to help speed things up. This would give a hint to the C compiler to use a CPU register as local storage. This is most likely no longer necessary as modern day C compilers do this automatically.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/155726#15572628Answer by mike511 for Hidden features of Cmike5112008-10-01T00:34:59Z2008-10-01T00:34:59Z<p><strong>initializing structure to zero</strong></p>
<pre><code>struct mystruct a = {0};
</code></pre>
<p>this will zero all stucture elements.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/207983#2079838Answer by unwind for Hidden features of Cunwind2008-10-16T09:56:18Z2008-10-16T09:56:18Z<p>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 <code>memcpy()</code>, when a simple assignment does the trick.</p>
<p>For example, consider some imaginary 2D graphics library, it might define a type to represent an (integer) screen coordinate:</p>
<pre><code>typedef struct {
int x;
int y;
} Point;
</code></pre>
<p>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:</p>
<pre><code>Point point_new(int x, int y)
{
Point p;
p.x = x;
p.y = y;
return p;
}
</code></pre>
<p>This is safe, as long (of course) as the return value is copied by value using struct assignment:</p>
<pre><code>Point origin;
origin = Point(0, 0);
</code></pre>
<p>In this way you can write quite clean and object-oriented-ish code, all in plain standard C.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/211481#2114819Answer by Mark Baker for Hidden features of CMark Baker2008-10-17T08:54:17Z2008-10-17T08:54:17Z<p>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 <a href="http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html" rel="nofollow">co-routine trick.</a></p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/226139#2261394Answer by philippe for Hidden features of Cphilippe 2008-10-22T15:01:23Z2008-10-22T15:01:23Z<p>Compile-time assertions, as <a href="http://stackoverflow.com/questions/174356/ways-to-assert-expressions-at-build-time-in-c">already discussed here</a>. </p>
<pre><code>//--- size of static_assertion array is negative if condition is not met
#define STATIC_ASSERT(condition) \
typedef struct { \
char static_assertion[condition ? 1 : -1]; \
} static_assertion_t
//--- ensure structure fits in
STATIC_ASSERT(sizeof(mystruct_t) <= 4096);
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/226888#2268882Answer by Ben Combee for Hidden features of CBen Combee2008-10-22T18:00:24Z2008-10-22T18:00:24Z<p>C99-style variable argument macros, aka</p>
<pre><code>#define ERR(name, fmt, ...) fprintf(stderr, "ERROR " #name ": " fmt "\n", \
__VAR_ARGS__)
</code></pre>
<p>which would be used like</p>
<pre><code>ERR(errCantOpen, "File %s cannot be opened", filename);
</code></pre>
<p>Here I also use the stringize operator and string constant concatentation, other features I really like.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/438688#4386880Answer by Comptrol for Hidden features of CComptrol2009-01-13T11:26:43Z2009-01-13T11:26:43Z<p><strong>Excerpt</strong>:</p>
<blockquote>
<p>In this page, you will find a list of
interesting C programming
questions/puzzles, These programs
listed are the ones which I have
received as e-mail forwards from my
friends, a few I read in some books, a
few from the internet, and a few from
my coding experiences in C.</p>
</blockquote>
<p><a href="http://www.gowrikumar.com/c/index.html" rel="nofollow">http://www.gowrikumar.com/c/index.html</a></p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/609480#6094803Answer by Johannes Schaub - litb for Hidden features of CJohannes Schaub - litb2009-03-04T06:50:04Z2009-03-04T07:39:42Z<p>For the C99 inclined, here is some sugar:</p>
<pre><code>// function wants a non-null pointer to at least
// 10 integers
void fun(int t[static 10]) { ... }
</code></pre>
<p>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. </p>
<p><hr /></p>
<p>Another thing is <code>inline definitions</code>, also for C99 inclined. They allow having <em>different</em> definitions for a function:</p>
<p><em>private.h</em> - library internal header</p>
<pre><code>inline void doit(stuff *p) {
/* this include file is only included by our lib internally as a more
* efficient implementation. We will avoid some expensive checks and use
* some internal knowledge of *p */
...
}
</code></pre>
<p>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:</p>
<p><em>functions.h</em> - public header</p>
<pre><code>void doit(stuff *p);
</code></pre>
<p>That's the public header, where no inline definition appears. Calls to the function will use the external definition in some c-file. </p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/980530#9805306Answer by Ferruccio for Hidden features of CFerruccio2009-06-11T11:14:49Z2009-06-11T11:14:49Z<p>When initializing arrays or enums, you can put a comma after the last item in the initializer list. e.g:</p>
<pre><code>int x[] = { 1, 2, 3, };
enum foo { bar, baz, boom, };
</code></pre>
<p>This was done so that if you're generating code automatically you don't need to worry about eliminating the last comma.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/984065#9840652Answer by Alex Brown for Hidden features of CAlex Brown2009-06-11T22:19:12Z2009-06-11T22:19:12Z<p>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.</p>
<p>-Alex</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1025017#10250172Answer by aeflash for Hidden features of Caeflash2009-06-21T23:29:01Z2009-06-21T23:29:01Z<p>Say you have a struct with members of the same type:</p>
<pre><code>struct Point {
float x;
float y;
float z;
};
</code></pre>
<p>You can cast instances of it to a float pointer and use array indices:</p>
<pre><code>Point a;
int sum = 0, i = 0;
for( ; i < 3; i++)
sum += ((float*)a)[i];
</code></pre>
<p>Pretty elementary, but useful when writing concise code.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1025416#10254165Answer by Jason for Hidden features of CJason2009-06-22T04:01:19Z2009-06-22T04:01:19Z<p>C99 has some awesome any-order structure initialization.</p>
<p><code></p>
<pre><code>struct foo{
int x;
int y;
char* name;
};
void main(){
foo f = { .y = 23, .name = "awesome", .x = -38 };
}
</code></pre>
<p></code></p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1025517#10255170Answer by syncsynchalt for Hidden features of Csyncsynchalt2009-06-22T05:02:00Z2009-06-22T05:02:00Z<p>Variable-sized structs, seen in common resolver libs among other places.</p>
<pre>
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!
</pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1025705#10257051Answer by unknown (yahoo) for Hidden features of Cunknown (yahoo)2009-06-22T06:24:02Z2009-06-22T06:24:02Z<p>Here's three nice ones in gcc:</p>
<pre><code>__FILE__
__FUNCTION__
__LINE__
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1025714#10257140Answer by unknown (yahoo) for Hidden features of Cunknown (yahoo)2009-06-22T06:28:39Z2009-06-22T06:28:39Z<p>Wrap malloc and realloc like this:</p>
<pre><code>#ifdef _DEBUG
#define mmalloc(bytes) malloc(bytes);printf("malloc: %d\t<%s@%d>\n", bytes, __FILE__, __LINE__);
#define mrealloc(pointer, bytes) realloc(pointer, bytes);printf("realloc: %d\t<%s@%d>\n", bytes, __FILE__, __LINE__);
#else //_DEBUG
#define mmalloc(bytes) malloc(bytes)
#define mrealloc(pointer, bytes) realloc(pointer, bytes)
</code></pre>
<p>In fact, here is my full arsenol (The BailIfNot is for OO c):</p>
<pre><code>#ifdef _DEBUG
#define mmalloc(bytes) malloc(bytes);printf("malloc: %d\t<%s@%d>\n", bytes, __FILE__, __LINE__);
#define mrealloc(pointer, bytes) realloc(pointer, bytes);printf("realloc: %d\t<%s@%d>\n", bytes, __FILE__, __LINE__);
#define BAILIFNOT(Node, Check) if(Node->type != Check) return 0;
#define NULLCHECK(var) if(var == NULL) setError(__FILE__, __LINE__, "Null exception", " var ", FATAL);
#define ASSERT(n) if( ! ( n ) ) { printf("<ASSERT FAILURE@%s:%d>", __FILE__, __LINE__); fflush(0); __asm("int $0x3"); }
#define TRACE(n) printf("trace: %s <%s@%d>\n", n, __FILE__, __LINE__);fflush(0);
#else //_DEBUG
#define mmalloc(bytes) malloc(bytes)
#define mrealloc(pointer, bytes) realloc(pointer, bytes)
#define BAILIFNOT(Node, Check) {}
#define NULLCHECK(var) {}
#define ASSERT(n) {}
#define TRACE(n) {}
#endif //_DEBUG
</code></pre>
<p>Here is some example output:</p>
<pre><code>malloc: 12 <hash.c@298>
trace: nodeCreate <hash.c@302>
malloc: 5 <hash.c@308>
malloc: 16 <hash.c@316>
malloc: 256 <hash.c@320>
trace: dataLoadHead <hash.c@441>
malloc: 270 <hash.c@463>
malloc: 262144 <hash.c@467>
trace: dataLoadRecursive <hash.c@404>
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1025717#10257170Answer by Rigo Vides for Hidden features of CRigo Vides2009-06-22T06:28:55Z2009-06-22T06:28:55Z<p>I just read this <a href="http://beerpla.net/2009/06/21/hidden-features-of-perl-php-javascript-c-c-c-java-ruby-python-and-others-collection-of-incredibly-useful-lists/" rel="nofollow">article</a>. It has some C and several other languages "hidden features".</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1025748#10257480Answer by unknown (yahoo) for Hidden features of Cunknown (yahoo)2009-06-22T06:38:22Z2009-06-22T06:38:22Z<p>Object oriented C macros:
You need a constructor (init), a destructor (dispose), an equal (equal), a copier (copy), and some prototype for instantiation (prototype).</p>
<p>With the declaration, you need to declare a constant prototype to copy and derive from. Then you can do <code>C_OO_NEW</code>. I can post more examples if needed. LibPurple is a large object oriented C code base with a callback system (if you want to see one in use)</p>
<pre><code>#define C_copy(to, from) to->copy(to, from)
#define true 1
#define false 0
#define C_OO_PROTOTYPE(type)\
void type##_init (struct type##_struct *my);\
void type##_dispose (struct type##_struct *my);\
char type##_equal (struct type##_struct *my, struct type##_struct *yours); \
struct type##_struct * type##_copy (struct type##_struct *my, struct type##_struct *from); \
const type type##__prototype = {type##_init, type##_dispose, type##_equal, type##_copy
#define C_OO_OVERHEAD(type)\
void (*init) (struct type##_struct *my);\
void (*dispose) (struct type##_struct *my);\
char (*equal) (struct type##_struct *my, struct type##_struct *yours); \
struct type##_struct *(*copy) (struct type##_struct *my, struct type##_struct *from);
#define C_OO_IN(ret, type, function, ...) ret (* function ) (struct type##_struct *my, __VA_ARGS__);
#define C_OO_OUT(ret, type, function, ...) ret type##_##function (struct type##_struct *my, __VA_ARGS__);
#define C_OO_PNEW(type, instance)\
instance = ( type *) malloc(sizeof( type ));\
memcpy(instance, & type##__prototype, sizeof( type ));
#define C_OO_NEW(type, instance)\
type instance;\
memcpy(&instance, & type ## __prototype, sizeof(type));
#define C_OO_DELETE(instance)\
instance->dispose(instance);\
free(instance);
#define C_OO_INIT(type) void type##_init (struct type##_struct *my){return;}
#define C_OO_DISPOSE(type) void type##_dispose (struct type##_struct *my){return;}
#define C_OO_EQUAL(type) char type##_equal (struct type##_struct *my, struct type##_struct *yours){return 0;}
#define C_OO_COPY(type) struct type##_struct * type##_copy (struct type##_struct *my, struct type##_struct *from){return 0;}
</code></pre>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1025953#10259530Answer by Eyal for Hidden features of CEyal2009-06-22T07:49:12Z2009-06-22T07:49:12Z<p>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.</p>
<pre><code>typeof(foo) copy_of_foo; //declare bar to be a variable of the same type as foo
copy_of_foo = foo; //now copy_of_foo has a backup of foo, for any type
</code></pre>
<p>This might be just a gcc extension, I'm not sure.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1026588#10265882Answer by kolistivra for Hidden features of Ckolistivra2009-06-22T11:10:14Z2009-06-22T11:10:14Z<p>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:</p>
<pre><code>#include <stdio.h>
int main() {
int a = 3;
float b = 6.412355;
printf("%.*f\n",a,b);
return 0;
}
</code></pre>
<p>the * character achieves this effect.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1027608#10276080Answer by Tomas Senart for Hidden features of CTomas Senart2009-06-22T14:44:48Z2009-06-22T14:44:48Z<p>For clearing the input buffer you can't use <code>fflush(stdin)</code>. The correct way is as follows: <code>scanf("%*[^\n]%*c")</code>
This will discard everything from the input buffer.</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1028177#10281770Answer by Adrian Sietsma for Hidden features of CAdrian Sietsma2009-06-22T16:29:08Z2009-06-22T16:29:08Z<p>Use NaN for chained calculations / error return :</p>
<p>//#include <stdint.h><br />
static uint64_t iNaN = 0xFFF8000000000000;<br />
const double NaN = *(double *)&iNaN; // quiet NaN</p>
<p>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.</p>
<p>note : testing for NaN is tricksy, since NaN != NaN... use isnan(x), or roll your own.<br />
x!=x is mathematically correct if x is NaN, but tends to get optimised out by some compilers</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1636390#16363900Answer by Skizz for Hidden features of CSkizz2009-10-28T10:28:57Z2009-10-28T10:28:57Z<p>I only discovered this after 15+ years of C programming:</p>
<pre><code>struct SomeStruct
{
unsigned a : 5;
unsigned b : 1;
unsigned c : 7;
};
</code></pre>
<p>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:</p>
<pre><code>xxxc cccc ccba aaaa
</code></pre>
<p>Skizz</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/1715239#17152390Answer by S.C. Madsen for Hidden features of CS.C. Madsen2009-11-11T13:42:11Z2009-11-11T13:42:11Z<p>Compile-time assumption-checking using enums:
Stupid example, but can be really useful for libraries with compile-time configurable constants.</p>
<pre><code>#define D 1
#define DD 2
enum CompileTimeCheck
{
MAKE_SURE_DD_IS_TWICE_D = 1/(2*(D) == (DD)),
MAKE_SURE_DD_IS_POW2 = 1/((((DD) - 1) & (DD)) == 0)
};
</code></pre>