array of N pointers to functions returning pointers to functions

后端 未结 6 1645
时光说笑
时光说笑 2021-02-02 14:57

This was asked to me in an interview! i really got confused

  • How do I declare an array of N pointers to functions returning pointers to functions returning pointers
6条回答
  •  一个人的身影
    2021-02-02 15:39

    array of N pointers to functions returning pointers to functions returns a char:

    int (*(*arr_fp[n])(void))(void)
    

提交回复
热议问题