(caddr argument) -> value
This is a shorthand procedure, and is best explained by example:
>> (caddr '(1 2 3 4 5 6 7)) :: 3 >> (car (cdr (cdr '(1 2 3 4 5 6 7)))) :: 3
See Also: car, cdr