Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1064767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T19:43:07+00:00 2026-05-16T19:43:07+00:00

This question follows this other question about C declarations . Reading the answer to

  • 0

This question follows this other question about C declarations. Reading the answer to this question, I read about the spiral rule and I also understood what “declaration follows usage” means.

Ok so far. But then I read this declaration:

char *(*(*a[N])())(); 

and I was wondering how to parse it with the “declaration follows usage” ‘rule’. Especially for the array part.

What I read is:

(*(*a[N])()) 

is a function () returning a char *, then, dereferencing the following

(*a[N])() // 1

is this ‘function returning a char*‘, and so 1 is a ‘pointer to a function returning char *‘
then I would say ‘when (*a[N]) is called, it is [previous declaration]’. At this point we have (*a[N]) is a function returning a pointer to a function returning char *.

But then I don’t know how to apply this rule to distinguish between the ‘pointer to array’ and ‘array of pointer’.

Can someone clarify this?

Other question: what are the rules of “precedence” in such declarations, between & (in C++), *, and []? [maybe “precedence” is not the correct term]


To check if I understood the ‘spiral rule’ correctly, I also parse this expression below; please tell me if I am wrong.

       +-----------+
       | +------+  |
       | | +-+  |  |
       | | ^ |  |  |
char* (*(* a[N])())(); 
    ^  ^ ^   ^  ^  ^
    |  | |   |  |  |
    |  | +---+  |  |
    |  +--------+  |
    +--------------+

For me it is easier (loop by loop):

  • a is an array of N …
  • pointer to function returning …
  • pointer to function returning …
  • char *

But I am maybe missing something which in that case let me obtain the correct answer but that could be wrong in another more complicated case.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T19:43:08+00:00Added an answer on May 16, 2026 at 7:43 pm

    You just have to build it up in steps.

    char *X();  // X =~ (*(*a[N])())
    

    Function returning char*

    char *(*Y())();  // Y =~ (*a[N])
    

    Function returning pointer to function returning char*.

    In a declaration, just as in an expression (declaration follow usage), postfix [] has a higher precedence that unary * so *a[N] is equivalent to *(a[N]), not (*a)[N].

    char *(*(*Z)())();  // Z =~ a[N]
    

    Pointer to function returning pointer to function returning char*.

    char *(*(*a[N])())();
    

    Array of N pointers to functions returning a pointer to function returning char*.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This question is a follow up on one of my other questions, Can I
This follows a couple of other questions (but I think I have refined my
This question follows on from this vim search question I have a setting in
This follows on from this question where I was getting a few answers assuming
this kind of follows on from another question of mine. Basically, once I have
OK, this kind of follows on from my previous question . What I would
This question is a follow up to my previous question about getting the HTML
This question is about 64-bit Java apps in general, although I came upon it
This question is a follow-up from How to indicate that a method was unsuccessful
This question is a follow up to: Why can’t I call a method outside

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.