6
votes
7answers
370 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 …
8
votes
13answers
994 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.
…
12
votes
6answers
6k views
What is the full “for” loop syntax in C (and others in case they are compatible) ?
I have seen some very weird for loops when reading other people's code. I have been trying to search for a full syntax explanation for the for loop in C but it is very hard because the word "for" …
56
votes
45answers
9k 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.
