Does it? Here's one that I grabbed from cdecl.org:
char * const (*(* const bar)[5])(int )
And its translation:
declare bar as const pointer to array 5 of pointer to function (int) returning const pointer to char
This seems like what I'd get from the spiral technique.