I'm trying to come up with with shortest C function (including spaces, any macros that are substituted into it) possible that is passed a NULL-terminated string and returns the number of spaces in that string. This is what I've got so far:
int n(char*l){return*l?!(*l-32)+n(++l):0;}
Which is 42 characters long. Any improvements?

ltwice between two sequence points, while one is a write access. That's undefined behavior. You can change++ltol+1to solve that (and still be at 42 characters, of course xD) – Johannes Schaub - litb Aug 30 at 1:16