>>25
C:
a(b(c(d(e()))));
Lisp:
(a (b (c (d (e)))))
The only reason you don't tend to see that kind of stuff in C is because C simply isn't capable of it; as soon you start dealing with complex data structures you have to mess the code up with memory management and it becomes a column of statements.