During a C introductory course (in an Engineering University), we were asked to identify a declaration with pointers along the lines of int (*(*f[5])(void))[10];
.
my current understanding of the declaration would be "an array containing 10 function pointers returning an int pointer each and not taking any args".
Could someone confirm my understanding of the declaration, and tell me if such definitions would be of any use in practice ?