shubha
What is an incomplete type?
By shubha in OOP/OOD on Jul 13 2006
  • shubha
    Jul, 2006 13

    Incomplete types refers to pointers in which there is non availability of the implementation of the referenced location or it points to some location whose value is not available for modification.


    Example: int *i=0x400 // i points to address 400
                         *i=0;      //set the value of memory location pointed by i.
    Incomplete types are otherwise called uninitialized pointers..

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS