what does this mean char (*(*a[4])())[5]?

后端 未结 4 539
鱼传尺愫
鱼传尺愫 2020-12-09 13:08

Hi I came across the question in \"Test your skills in c++\".

Please let me know what does it mean with an example?

Edited Section

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-09 13:40

    I cheated by removing what I think is an extra right-parenthesis and pasting the result into cdecl.

    declare a as array 4 of pointer to function returning pointer to array 5 of char

提交回复
热议问题