Blog Archive

Wednesday, March 12, 2014

Complicated Declarations In C

Many times you might have wondered about all the complex and strange syntaxes of functions, variables and pointers in c. But these declarations are not as complex as it looks at first. When you know where to look and how to look, reading these syntaxes would become a piece of cake. Just see this presentation and you will find it very easy to read all the complexities in c.



1 comment:

  1. In Slide 18 : Instead of int( *(p[10]) )(int,int); , it should be int* ( *(p[10]) )(int,int); right ???

    ReplyDelete