What are the pointer declarations used in C?

      

What are the pointer declarations used in C?

  

Answers


caroline
1.Array of pointers e.g , int *a[10]; Array of pointers to integer
2.Pointers to an array,e.g , int (*a)[10]; Pointer to an array of into
3.Function returning a pointer,e.g, float *f( ) ; Function returning a pointer to float
4.Pointer to a pointer ,e.g, int **x; Pointer to
apointer to int
5.pointer to a data type ,e.g, char *p; pointer to cha
carol1 answered the question on April 13, 2018 at 15:45


Next:  Represent a two-dimensional array using pointer?
Previous: Give reasons why people find it difficult to care for orphans

View More Computer Science Questions and Answers | Return to Questions Index


Exams With Marking Schemes

Related Questions