Tagged Questions
139
votes
56answers
23k views
Hidden features of C
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.
13
votes
7answers
1k views
What is useful about this C syntax?
So i dont know everything about C.
What is useful about this C syntax?
int func (p, p2)
void *p;
int p2;
{
return 0;
}
I was able to write this in visual studios 2010beta
//yes the ...
11
votes
13answers
2k views
Does anyone know of a C compiler that fails to compile this?
I was hanging out in my profiler for a while trying to figure out how to speed up a common log parser which was bottlenecked around the date parsing and I tried various algorithms to speed things up.
...