Whats the meaning of the Expression?

Can anyone please let me know the meaning of this expression in c language


int *x[]();


My perception for it is
x is an array of function returning integer pointer


Is it okay?If not what should be done to make it work properly?Please let me know.Help would be appreciated.
Last edited on
it says that x is an array of functions returning int pointer.
Arrays of functions are not legal
Last edited on
Topic archived. No new replies allowed.