C Deciphering declarations

后端 未结 2 1667
星月不相逢
星月不相逢 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:21

    Use David Anderson's Clock wise spiral rule for reading such notations.

    0 讨论(0)
  • 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

    0 讨论(0)
提交回复
热议问题