top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

what does the following syntax means in C: int *(*func())[]

+1 vote
615 views
what does the following syntax means in C: int *(*func())[]
posted Jun 21, 2017 by Mahedra Chaudhari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

Ideally I will avoid this type of confusing statement...
func is a function taking zero arguments and returning a pointer to an array of pointers to int.

answer Jun 21, 2017 by Salil Agrawal
...