How to read complex pointers in C Programming?



Rule 1. Assign the priority to the pointer declaration considering precedence and associative according to following table.

Where

(): This operator behaves as bracket operator or function operator.

[]: This operator behaves as array subscription operator.

*: This operator behaves as pointer operator not as multiplication operator.

Identifier: It is not an operator but it is name of pointer variable. You will always find the first priority will be assigned to the name of pointer.

Data type: It is also not an operator. Data types also includes modifier (like signed int, long double etc.)

You will understand it better by examples:

(1) How to read following pointer?

char (* ptr)[3]
Answer:

Step 1: () and [] enjoys equal precedence. So rule of associative will decide the priority. Its associative is left to right So first priority goes to ().



Step 2: Inside the bracket * and ptr enjoy equal precedence. From rule of associative (right to left) first priority goes to ptr and second priority goes to *.

Step3: Assign third priority to [].

Step4: Since data type enjoys least priority so assign fourth priority to char.

Now read it following manner:

ptr is pointer to such one dimensional array of size three which content char type data.

(2) How to read following pointer?
float (* ptr)(int)
Answer:

Assign the priority considering precedence and associative.




Now read it following manner:

ptr is pointer to such function whose parameter is int type data and return type is float type data.

Rule 2: Assign the priority of each function parameter separately and read it also separately.
Understand it through following example.

(3) How to read following pointer?
void (*ptr)(int (*)[2],int (*) void))
Answer:

Assign the priority considering rule of precedence and associative.



Now read it following manner:

ptr is pointer to such function which first parameter is pointer to one dimensional array of size two which content int type data and second parameter is pointer to such function which parameter is void and return type is int data type and return type is void.

(4) How to read following pointer?

int ( * ( * ptr ) [ 5 ] ) ( )
Answer:

Assign the priority considering rule of precedence and associative.



Now read it following manner:
ptr is pointer to such array of size five which content are pointer to such function which parameter is void and return type is int type data.

(5) How to read following pointer?
double*(*(*ptr)(int))(double **,char c)
Answer:


Assign the priority considering rule of precedence and associative.

Now read it following manner:
ptr is pointer to function which parameter is int type data and return type is pointer to function which first parameter is pointer to pointer of double data type and second parameter is char type data type and return type is pointer to double data type.

(6) How to read following pointer?
unsigned **(*(*ptr)[8](char const *, ...)
Answer:

Assign the priority considering rule of precedence and associative.

Now read it following manner:
ptr is pointer to array of size eight and content of array is pointer to function which first parameter is pointer to character constant and second parameter is variable number of arguments and return type is pointer to pointer of unsigned int data type.

Definition of pointer
How to read complex pointer
Arithmetic operation with pointer
Pointer to function
Pointer to array of function
Pointer to array of string
Pointer to structure
pointer to union
Multi level pointer
C tutorial

33 comments:

yogesh_madhuri said...

Nice Information.Keep It up.ThAnks for giving this useful info.

RISHABH said...

Very good information for the beginners to have better pictures of pointers...

vivek sharma said...

Thanks for the valuable information, i feel in last example no. 6, one bracket is missing,
unsigned **(*(*ptr)[8](char const *, ...)

i feel the correct is
unsigned **(*(*ptr)[8])(char const *, ...)

SEMBU said...

Good Information

Mohini said...

thanx for dis info keep going.........

ramya said...

thankq..

vishwanath said...

Very useful thanks a loT!

dheeru said...

thanx a lot.......

raju said...

thanx a lot

aashish said...

nice work...............
keep it up..........

gourab said...

information that is useful ,enjoyable & necessary for becoming a c programmer..

nice post bro..keep it up..

sammy said...

Good work !!!

Karpov said...

Nice work ..............,Thank you

rajiv said...

it is necessary to know beginer of c programmer
thnk a lot keep it up...............

SOHAN said...

thanks a lot for the pictorial representation

Suhas said...

really good 1

vibhu said...

VERY VERY USEFUL INFORMATION
THANKS TO THE WRITER

xman said...

really good one !!!

SUDEEP KUMAR said...

Very useful

babak said...

babak barany ,it was really good ,thanks

Pradeep said...

thanK yoU siR!!!!!! thanK yoU verY mucH!!!!!!!!!

prabu said...

thank u for posting this:)

dinhpq said...

Thank you so much.

pankaj kumar yadav said...

Thanks.........

Mickey said...

nice one

Amal Chakravarty said...

Thanks for the nice informations.These valuable notes are very hard to find out in programming books.

bhuvana said...

Thanks for such a nice explanation.

vicky said...

very nice info. in this ... so, keep it up......

vishnu srivastava said...

thanks a lot for this valueable information.

lakshmi said...

very very nice info

brandy25 said...

perfect! Very nice! Thanks a lot!!!

neeharika said...

Perfect place for people who have pointers phobia.phobia no more remains....

VINOD KUMAR said...

really nice information,please keep it up...