SlideShare ist ein Scribd-Unternehmen logo
1 von 39
Complicated Declarations In C
By Rahul Budholiya
Founder Lunaplena Apps
rahulbudholiya.blogspot.com
www.linkedin.com/pub/rahul-budholiya/34/53/b35
www.facebook.com/rahul.budholiya.dev
Declaration And Definition
Definition:
Function:
int add(int a,int b)
{
retrun a+b;
}
Variable:
int a;
User Defined data
type:
union student
{
int a;
char c[2];
};
Declaration:
Function:
int add(int,int);
extern int add(int,int);
Variable:
extern int a;
User Defined data
type:
union student;
extern union student;
Declaration of Pointers.
General Syntax:
[name of data type] *<variable_name>;
Here [name of data type] is data type of variable, address
of which this pointer can contain.
But it is not as simple as, above syntax is seems like.
All the keywords placed before ‘*’ does not affect
properties (they define properties of variable which can be
pointed by this pointer) of pointer variable. If we need to
affect properties of pointer variable all keywords must be
placed after * sign(but there are exceptions like far,huge
and near).
Declaration of Pointers.
There are pointer type in c, like int * is a type of int
pointer.
If we assume int * is a type, and we know that we can
create pointers of any type by writing ‘[type name] * ‘.
So if we write int* * then it will create pointer of a int
pointer.
We can define a pointer to any other pointer in c.
Keywords and operators that
affects declarations
Const Phenomenon
Const is a keyword which defines a read only variable.
Variable declared with const keyword can only be assigned
a value once in lifetime.
Syntax:
const type <variable_name>;
Type const <variable_name>;
Ex:-
const int a;
int const a;
Const Phenomenon
What is the difference between following two declarations ?
const int *p;
int const *p;
Answer:
There is no difference, both refers to same meaning.
Const Phenomenon
What is the difference between following two declarations ?
const int *p;
int * const p;
Answer:
First is a pointer to a constant int(*p=10 is wrong). And
second is a constant pointer to int.(p=10 is wrong).
near,far and huge
near,far and huge pointers
near,far and huge are used with pointers.
•These keywords were introduced to support memory
segmentation.
•Size of a near pointer is 2 bytes, and size of huge
and far pointers is 4 bytes.
•Near far and huge pointers only supported by
Borland tc under dos, 32 bit platforms like window,
linux and unix does not support these keywords,
there are all pointers are 32 bit.
near,far and huge pointers
Which is the following is a near pointer ?
char near * far *ptr;
char near * huge *ptr2;
char far * huge* ptr3;
Answer:
No one is near pointer;
Using () operator in declarations.
Using () operator in declarations.
Like any other instruction of c, part of declarative
instruction contained by () operator executes separately,
and () operator defined by inner most ‘()’(level) executes
first and then one who has higher level of nesting.
Syntex:
Exp1(Exp2….(ExpN <variable_name>));
Exp1 ,Exp…ExpN are all sub expressions of a declarative
statement.
Using [] operator in declarations
[] operator in a declaration define size of memory by
multiplying size of data type specified in statement with the
size specified in [] operator.
But what will happen with this memory size it depends on
declaration.
Using [] operator in declarations
Observe following two declarations.
int *p[10];
int (*p)[10];
First one allocates 20 bytes and second one allocates two bytes.
First is a array of 10 int pointers.
And second is a pointer to a block which has size of 20 bytes.
In first statement [10] will going to be read first by
compiler. So compiler thought p as a array of 10 elements
and then it looks up for type of these elements which it
finds int *.
In Second statement () will executes first by compiler, so
compiler thought p as a pointer and then it looks up for
type of this pointer which it finds int [10].
Use of () And [] in function pointer declarations.
Use of () And [] in function pointer declarations.
We can have pointers to functions in c.
Read following declaration.
int *p(int,int);
Above is a declaration. Of a function named p with two int
parameters and int * as return type.
How can we declare a pointer to this function ?
Answer:
int * (*p)(int,int);
Now p is a pointer to a function which has two int parameters
and int *as return type.
Use of () and [] in function pointer declarations.
Now, how we can declare a array of pointers of following function
int *p(int,int);
int (*(p[10]))(int,int);
In above declaration p is a array of 10 pointers of a function which
has two int parameters and int * as return type.
Now you can see, above is not the general declaration syntax of
pointers, as we saw earlier
[name of data type] *<variable_name>;
Now finally we came to some real complicated declarations.
Can you read following declaration ?
void (*f())(void(*)(int *,void**),int(*)
(void**,int*));Answer:
Yes
Rules to read declaration in c
1. Start with the inner most () containing variable
name.
2. Read the declarations clock wise. Read left first
in the same () and then right.
3. Read from inner most () to outer most().
Rules to read declarations in c.
Char ( * ( * f () ) [] ) ();
1
2
3
4
5
6
Rules to read declarations in c.
Char ( * ( * f () ) [] ) ();
F is function which returns a pointer to an array of pointers to
a function which returns an char.
Can you read following declaration ?
void (*f())(void(*)(int *,void**),int(*)
(void**,int*));Answer:
Yes
In above declaration f is a function which returns a pointer to a
function which returns nothing and receives two parameters. First
is a pointer to a function which returns nothing but receives two
parameters first is pointer to an int and second is a pointer to a void
pointer. The second parameter is a pointer to a function which
retruns an int an receives two parameters first is pointer to a void
pointer and second is a pointer to a int.
Can you declare a array of pointers of a
function which receives four
parameters all of following type and
returns following pointer.
void (*f())(void(*)(int *,void**),int(*)
(void**,int*));
Answer:
Do I Look like a fool ?
Now typedef comes in picture.
How typedef works.
What are the types of var1,var2,var3 and var4 in following program ?
#include<stdio.h>
#define character char *
Void main()
{
Typedef char * CHARAT
character var1,var2;
CHARAT var3,var4;
}
Answer:
In above code var1,var3,var4 are pointers to char and
var2 is char variable.
Will following code compile?
typedef struct
{
int data;
NODEPTR next;
} *NODEPTR;
Answer: No
A typedef declaration can not be used until it is defined,
and in following example it not defined when it is used.
Any variable declaration can be
converted by typedef.
typedef int arr[10];
arr a;
typedef int (*p)(int,int);
p func();
struct student Stu1,Stu2;
Stu1 g;
Stu2 b;
Can you declare a array of pointers of a function
which receives four parameters all of following
type and returns following pointer.
void (*f())(void(*)(int *,void**),int(*)
(void**,int*));
Answer:
typedef void (*f())(void(*)(int *,void**),int(*)(void**,int*));
f(*g[10])(f,f,f,f);
Questions
What will be the output of
following program ?
#include<stdio.h>
int main()
{
char near * near *ptr1;
char near * far *ptr2;
char near * huge *ptr3;
printf(“%d %d %d”,sizeof(ptr1),sizeof(ptr2),sizeof(ptr3));
return 0;
}
Answer: 2,4,4
Will following code compile
without error ?
#include<stdio.h>
structr student;
int main()
{
struct student a;
return 0;
}
struct student
{
int roll;
};
Answer: Above code will compile without any error.
Will following code compile
without error ?
#include<stdio.h>
structr student;
int main()
{
struct student a;
a.roll=10;
Printf(“%d”);
return 0;
}
struct student
{
int roll;
};
Answer: above code will not compile.
Read following declaration.
char (*(*x[3])())[5];
Answer:
x is an array of 3 function pointers, where each pointer points to a
function that returns a pointer to array of 5 chars.
Read following declaration.
void (*f[10])(int,int);
Answer:
f is an array of 10 function pointers, where each pointer points to a
function that receives two ints and returns nothing.
Read following declaration.
int (*ftable[])(void) ={fadd,fsub,fmul,fdiv};
Answer:
Ftable is an array of 5 function pointers which points to the function
fadd(),fsub(),fmul(),fdiv()
Read following declaration.
int ** (*f)(int **,int **(*)(int **,int **));
Answer:
f is a pointer to a function which returns a pointer to int pointer and
receives two parameters . First is a pointer of pointer of int. And
second is a pointer to a function which receives two pointers of int
pointer as parameters and returns a pointer to int pointer.
What do the following declaration means ?
Typedef char *pc;
Typedef pc fpc();
Typedef fpc *pfpc;
Typedef pfpc fpfpc();
Typedef fpfpc *pfpfpc;
Pfpfpc a[10];
pc is a pointer to char.
fpc is a function which returns a pointer to char.
pfpc is a pointer to a function returning pointer to a char.
fpfpc is a function returning pointer to a function returning
pointer to a char.
pfpfpc is a pointer to function returning pointer to a function
returning pointer to char.
pfpfpc a[10] is an array of 10 pointers to a function returning
pointers to functions returning pointer to characters.
All The Best!!!
For more stuff visit
rahulbudholiya.blogspot.com

Weitere ähnliche Inhalte

Was ist angesagt?

Pointers in c
Pointers in cPointers in c
Pointers in c
Mohd Arif
 

Was ist angesagt? (20)

Functions in C++
Functions in C++Functions in C++
Functions in C++
 
Inorder traversal
Inorder traversalInorder traversal
Inorder traversal
 
Function C programming
Function C programmingFunction C programming
Function C programming
 
Recursion in c++
Recursion in c++Recursion in c++
Recursion in c++
 
Function overloading(c++)
Function overloading(c++)Function overloading(c++)
Function overloading(c++)
 
Introduction to Procedural Programming in C++
Introduction to Procedural Programming in C++Introduction to Procedural Programming in C++
Introduction to Procedural Programming in C++
 
Pointers in c
Pointers in cPointers in c
Pointers in c
 
Templates
TemplatesTemplates
Templates
 
Pointers in C Programming
Pointers in C ProgrammingPointers in C Programming
Pointers in C Programming
 
C Pointers
C PointersC Pointers
C Pointers
 
C functions
C functionsC functions
C functions
 
Recursion
RecursionRecursion
Recursion
 
Java Inheritance
Java InheritanceJava Inheritance
Java Inheritance
 
Recursion
RecursionRecursion
Recursion
 
Preprocessors
PreprocessorsPreprocessors
Preprocessors
 
Introduction Of C++
Introduction Of C++Introduction Of C++
Introduction Of C++
 
Basic C Programming language
Basic C Programming languageBasic C Programming language
Basic C Programming language
 
virtual function
virtual functionvirtual function
virtual function
 
Multiple inheritance in c++
Multiple inheritance in c++Multiple inheritance in c++
Multiple inheritance in c++
 
Functions in c language
Functions in c languageFunctions in c language
Functions in c language
 

Andere mochten auch

The history of video games goes as far back as the early 1940s
The history of video games goes as far back as the early 1940sThe history of video games goes as far back as the early 1940s
The history of video games goes as far back as the early 1940s
Jian Li
 
I did not go to School last Saturday
I did not go to School last SaturdayI did not go to School last Saturday
I did not go to School last Saturday
Sandra MP
 
Algebra 2 powerpoint
Algebra 2 powerpointAlgebra 2 powerpoint
Algebra 2 powerpoint
roohal51
 

Andere mochten auch (20)

802.11r Explained.
802.11r Explained. 802.11r Explained.
802.11r Explained.
 
3cork and kerry
3cork and kerry3cork and kerry
3cork and kerry
 
1 mate5 ecuación-
1 mate5 ecuación-1 mate5 ecuación-
1 mate5 ecuación-
 
Leave a mark in history
Leave a mark in historyLeave a mark in history
Leave a mark in history
 
DMI Light Towers - Operational Manual
DMI Light Towers - Operational ManualDMI Light Towers - Operational Manual
DMI Light Towers - Operational Manual
 
HealthCare BPO
HealthCare BPOHealthCare BPO
HealthCare BPO
 
The Building Blocks of Great Video
The Building Blocks of Great VideoThe Building Blocks of Great Video
The Building Blocks of Great Video
 
jQuery: Events, Animation, Ajax
jQuery: Events, Animation, AjaxjQuery: Events, Animation, Ajax
jQuery: Events, Animation, Ajax
 
The history of video games goes as far back as the early 1940s
The history of video games goes as far back as the early 1940sThe history of video games goes as far back as the early 1940s
The history of video games goes as far back as the early 1940s
 
Yesu Nallavar -Testimony of Sister Nirmala
Yesu Nallavar -Testimony of Sister NirmalaYesu Nallavar -Testimony of Sister Nirmala
Yesu Nallavar -Testimony of Sister Nirmala
 
Ciclo basico diurno vigencia 2009 scp
Ciclo basico diurno vigencia 2009 scpCiclo basico diurno vigencia 2009 scp
Ciclo basico diurno vigencia 2009 scp
 
What color do you like
What color do you likeWhat color do you like
What color do you like
 
OUTPUT BI - MAKING IT WORK FOR YOU
OUTPUT BI - MAKING IT WORK FOR YOUOUTPUT BI - MAKING IT WORK FOR YOU
OUTPUT BI - MAKING IT WORK FOR YOU
 
I did not go to School last Saturday
I did not go to School last SaturdayI did not go to School last Saturday
I did not go to School last Saturday
 
Biopharma Production and Development China 2015
Biopharma Production and Development China 2015 Biopharma Production and Development China 2015
Biopharma Production and Development China 2015
 
Zed-Sales™ - a flagship product of Zed-Axis Technologies Pvt. Ltd.
Zed-Sales™ - a flagship product of Zed-Axis Technologies Pvt. Ltd.Zed-Sales™ - a flagship product of Zed-Axis Technologies Pvt. Ltd.
Zed-Sales™ - a flagship product of Zed-Axis Technologies Pvt. Ltd.
 
Bailey capítulo-6
Bailey capítulo-6Bailey capítulo-6
Bailey capítulo-6
 
Orange Sparkle Ball: Who We Are and What We Do
Orange Sparkle Ball: Who We Are and What We DoOrange Sparkle Ball: Who We Are and What We Do
Orange Sparkle Ball: Who We Are and What We Do
 
Algebra 2 powerpoint
Algebra 2 powerpointAlgebra 2 powerpoint
Algebra 2 powerpoint
 
On needle settings of tuck stitch fully fashioned,22rib diamond design fully-...
On needle settings of tuck stitch fully fashioned,22rib diamond design fully-...On needle settings of tuck stitch fully fashioned,22rib diamond design fully-...
On needle settings of tuck stitch fully fashioned,22rib diamond design fully-...
 

Ähnlich wie Complicated declarations in c

1. DSA - Introduction.pptx
1. DSA - Introduction.pptx1. DSA - Introduction.pptx
1. DSA - Introduction.pptx
hara69
 
Frequently asked questions in c
Frequently asked questions in cFrequently asked questions in c
Frequently asked questions in c
David Livingston J
 

Ähnlich wie Complicated declarations in c (20)

Advanced C programming
Advanced C programmingAdvanced C programming
Advanced C programming
 
User Defined Functions
User Defined FunctionsUser Defined Functions
User Defined Functions
 
Advanced pointers
Advanced pointersAdvanced pointers
Advanced pointers
 
Amit user defined functions xi (2)
Amit  user defined functions xi (2)Amit  user defined functions xi (2)
Amit user defined functions xi (2)
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
functions- best.pdf
functions- best.pdffunctions- best.pdf
functions- best.pdf
 
Pointer to function 1
Pointer to function 1Pointer to function 1
Pointer to function 1
 
Preprocessor directives
Preprocessor directivesPreprocessor directives
Preprocessor directives
 
C Programming - Refresher - Part III
C Programming - Refresher - Part IIIC Programming - Refresher - Part III
C Programming - Refresher - Part III
 
Python Functions.pptx
Python Functions.pptxPython Functions.pptx
Python Functions.pptx
 
Python Functions.pptx
Python Functions.pptxPython Functions.pptx
Python Functions.pptx
 
Object Oriented Technologies
Object Oriented TechnologiesObject Oriented Technologies
Object Oriented Technologies
 
1. DSA - Introduction.pptx
1. DSA - Introduction.pptx1. DSA - Introduction.pptx
1. DSA - Introduction.pptx
 
Unit 3 (1)
Unit 3 (1)Unit 3 (1)
Unit 3 (1)
 
C++ Interview Question And Answer
C++ Interview Question And AnswerC++ Interview Question And Answer
C++ Interview Question And Answer
 
C++ questions And Answer
C++ questions And AnswerC++ questions And Answer
C++ questions And Answer
 
ForLoopandUserDefinedFunctions.pptx
ForLoopandUserDefinedFunctions.pptxForLoopandUserDefinedFunctions.pptx
ForLoopandUserDefinedFunctions.pptx
 
Unit-III.pptx
Unit-III.pptxUnit-III.pptx
Unit-III.pptx
 
Frequently asked questions in c
Frequently asked questions in cFrequently asked questions in c
Frequently asked questions in c
 
Function Pointer
Function PointerFunction Pointer
Function Pointer
 

Kürzlich hochgeladen

BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
SoniaTolstoy
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 

Kürzlich hochgeladen (20)

Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 

Complicated declarations in c

  • 1. Complicated Declarations In C By Rahul Budholiya Founder Lunaplena Apps rahulbudholiya.blogspot.com www.linkedin.com/pub/rahul-budholiya/34/53/b35 www.facebook.com/rahul.budholiya.dev
  • 2. Declaration And Definition Definition: Function: int add(int a,int b) { retrun a+b; } Variable: int a; User Defined data type: union student { int a; char c[2]; }; Declaration: Function: int add(int,int); extern int add(int,int); Variable: extern int a; User Defined data type: union student; extern union student;
  • 3. Declaration of Pointers. General Syntax: [name of data type] *<variable_name>; Here [name of data type] is data type of variable, address of which this pointer can contain. But it is not as simple as, above syntax is seems like. All the keywords placed before ‘*’ does not affect properties (they define properties of variable which can be pointed by this pointer) of pointer variable. If we need to affect properties of pointer variable all keywords must be placed after * sign(but there are exceptions like far,huge and near).
  • 4. Declaration of Pointers. There are pointer type in c, like int * is a type of int pointer. If we assume int * is a type, and we know that we can create pointers of any type by writing ‘[type name] * ‘. So if we write int* * then it will create pointer of a int pointer. We can define a pointer to any other pointer in c.
  • 5. Keywords and operators that affects declarations
  • 6. Const Phenomenon Const is a keyword which defines a read only variable. Variable declared with const keyword can only be assigned a value once in lifetime. Syntax: const type <variable_name>; Type const <variable_name>; Ex:- const int a; int const a;
  • 7. Const Phenomenon What is the difference between following two declarations ? const int *p; int const *p; Answer: There is no difference, both refers to same meaning.
  • 8. Const Phenomenon What is the difference between following two declarations ? const int *p; int * const p; Answer: First is a pointer to a constant int(*p=10 is wrong). And second is a constant pointer to int.(p=10 is wrong).
  • 10. near,far and huge pointers near,far and huge are used with pointers. •These keywords were introduced to support memory segmentation. •Size of a near pointer is 2 bytes, and size of huge and far pointers is 4 bytes. •Near far and huge pointers only supported by Borland tc under dos, 32 bit platforms like window, linux and unix does not support these keywords, there are all pointers are 32 bit.
  • 11. near,far and huge pointers Which is the following is a near pointer ? char near * far *ptr; char near * huge *ptr2; char far * huge* ptr3; Answer: No one is near pointer;
  • 12. Using () operator in declarations.
  • 13. Using () operator in declarations. Like any other instruction of c, part of declarative instruction contained by () operator executes separately, and () operator defined by inner most ‘()’(level) executes first and then one who has higher level of nesting. Syntex: Exp1(Exp2….(ExpN <variable_name>)); Exp1 ,Exp…ExpN are all sub expressions of a declarative statement.
  • 14. Using [] operator in declarations [] operator in a declaration define size of memory by multiplying size of data type specified in statement with the size specified in [] operator. But what will happen with this memory size it depends on declaration.
  • 15. Using [] operator in declarations Observe following two declarations. int *p[10]; int (*p)[10]; First one allocates 20 bytes and second one allocates two bytes. First is a array of 10 int pointers. And second is a pointer to a block which has size of 20 bytes. In first statement [10] will going to be read first by compiler. So compiler thought p as a array of 10 elements and then it looks up for type of these elements which it finds int *. In Second statement () will executes first by compiler, so compiler thought p as a pointer and then it looks up for type of this pointer which it finds int [10].
  • 16. Use of () And [] in function pointer declarations.
  • 17. Use of () And [] in function pointer declarations. We can have pointers to functions in c. Read following declaration. int *p(int,int); Above is a declaration. Of a function named p with two int parameters and int * as return type. How can we declare a pointer to this function ? Answer: int * (*p)(int,int); Now p is a pointer to a function which has two int parameters and int *as return type.
  • 18. Use of () and [] in function pointer declarations. Now, how we can declare a array of pointers of following function int *p(int,int); int (*(p[10]))(int,int); In above declaration p is a array of 10 pointers of a function which has two int parameters and int * as return type. Now you can see, above is not the general declaration syntax of pointers, as we saw earlier [name of data type] *<variable_name>; Now finally we came to some real complicated declarations.
  • 19. Can you read following declaration ? void (*f())(void(*)(int *,void**),int(*) (void**,int*));Answer: Yes
  • 20. Rules to read declaration in c 1. Start with the inner most () containing variable name. 2. Read the declarations clock wise. Read left first in the same () and then right. 3. Read from inner most () to outer most().
  • 21. Rules to read declarations in c. Char ( * ( * f () ) [] ) (); 1 2 3 4 5 6
  • 22. Rules to read declarations in c. Char ( * ( * f () ) [] ) (); F is function which returns a pointer to an array of pointers to a function which returns an char.
  • 23. Can you read following declaration ? void (*f())(void(*)(int *,void**),int(*) (void**,int*));Answer: Yes In above declaration f is a function which returns a pointer to a function which returns nothing and receives two parameters. First is a pointer to a function which returns nothing but receives two parameters first is pointer to an int and second is a pointer to a void pointer. The second parameter is a pointer to a function which retruns an int an receives two parameters first is pointer to a void pointer and second is a pointer to a int.
  • 24. Can you declare a array of pointers of a function which receives four parameters all of following type and returns following pointer. void (*f())(void(*)(int *,void**),int(*) (void**,int*)); Answer: Do I Look like a fool ?
  • 25. Now typedef comes in picture.
  • 26. How typedef works. What are the types of var1,var2,var3 and var4 in following program ? #include<stdio.h> #define character char * Void main() { Typedef char * CHARAT character var1,var2; CHARAT var3,var4; } Answer: In above code var1,var3,var4 are pointers to char and var2 is char variable.
  • 27. Will following code compile? typedef struct { int data; NODEPTR next; } *NODEPTR; Answer: No A typedef declaration can not be used until it is defined, and in following example it not defined when it is used.
  • 28. Any variable declaration can be converted by typedef. typedef int arr[10]; arr a; typedef int (*p)(int,int); p func(); struct student Stu1,Stu2; Stu1 g; Stu2 b;
  • 29. Can you declare a array of pointers of a function which receives four parameters all of following type and returns following pointer. void (*f())(void(*)(int *,void**),int(*) (void**,int*)); Answer: typedef void (*f())(void(*)(int *,void**),int(*)(void**,int*)); f(*g[10])(f,f,f,f);
  • 31. What will be the output of following program ? #include<stdio.h> int main() { char near * near *ptr1; char near * far *ptr2; char near * huge *ptr3; printf(“%d %d %d”,sizeof(ptr1),sizeof(ptr2),sizeof(ptr3)); return 0; } Answer: 2,4,4
  • 32. Will following code compile without error ? #include<stdio.h> structr student; int main() { struct student a; return 0; } struct student { int roll; }; Answer: Above code will compile without any error.
  • 33. Will following code compile without error ? #include<stdio.h> structr student; int main() { struct student a; a.roll=10; Printf(“%d”); return 0; } struct student { int roll; }; Answer: above code will not compile.
  • 34. Read following declaration. char (*(*x[3])())[5]; Answer: x is an array of 3 function pointers, where each pointer points to a function that returns a pointer to array of 5 chars.
  • 35. Read following declaration. void (*f[10])(int,int); Answer: f is an array of 10 function pointers, where each pointer points to a function that receives two ints and returns nothing.
  • 36. Read following declaration. int (*ftable[])(void) ={fadd,fsub,fmul,fdiv}; Answer: Ftable is an array of 5 function pointers which points to the function fadd(),fsub(),fmul(),fdiv()
  • 37. Read following declaration. int ** (*f)(int **,int **(*)(int **,int **)); Answer: f is a pointer to a function which returns a pointer to int pointer and receives two parameters . First is a pointer of pointer of int. And second is a pointer to a function which receives two pointers of int pointer as parameters and returns a pointer to int pointer.
  • 38. What do the following declaration means ? Typedef char *pc; Typedef pc fpc(); Typedef fpc *pfpc; Typedef pfpc fpfpc(); Typedef fpfpc *pfpfpc; Pfpfpc a[10]; pc is a pointer to char. fpc is a function which returns a pointer to char. pfpc is a pointer to a function returning pointer to a char. fpfpc is a function returning pointer to a function returning pointer to a char. pfpfpc is a pointer to function returning pointer to a function returning pointer to char. pfpfpc a[10] is an array of 10 pointers to a function returning pointers to functions returning pointer to characters.
  • 39. All The Best!!! For more stuff visit rahulbudholiya.blogspot.com