Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having some trouble reading a line in a program that looks like this:

char* const *(*next) ();

I think next is a pointer to a function returning a pointer to a const pointer to a char, but I'm still a bit confused. If someone could answer this ASAP that would be great!

share|improve this question
It can help reading the signature right to left. Especially with "strange" pointers as this. – Skurmedel May 18 '11 at 9:43

2 Answers

cdecl can help you understand the more complicated declarations in C.

share|improve this answer
3  
Give a man a fishing pole and he can read the most horrendously complicated type declarations conceivable. – Chris Lutz May 18 '11 at 10:47

char* const* (*next) ();

You are declaring a function pointer called next that returns a char* const* (pointer to a char* const). You were right (:

Usage :

char* const* ret = next(); or char* const* ret = (*next)();

share|improve this answer
1  
takes an unspecified number of arguments; not "no arguments" – pmg May 18 '11 at 11:44
@pmg : True. Edited. – Rakkun May 18 '11 at 11:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.