C Deciphering declarations

后端 未结 2 1666
星月不相逢
星月不相逢 2021-01-23 10:27

Ok, this was a bit too much for me. How do you read these declarations?

char *(*(**myCBT[][10])())[];

Please note: I\'m not specifically asking

2条回答
  •  有刺的猬
    2021-01-23 11:23

    From cdecl:

    declare myCBT as array of array 10 of pointer to pointer to function returning pointer to array of pointer to char

提交回复
热议问题