C++ Programming Question: Download C++ Programming PDF

What is an incomplete type in C++?

Tweet Share WhatsApp

Answer:

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.

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.

Download C++ Programming PDF Read All 120 C++ Programming Questions
Previous QuestionNext Question
What is an Iterator class in C++?What is a dangling pointer in C++?