What is an incomplete type?
Answer / atul shankhwar
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.
| Is This Answer Correct ? | 0 Yes | 0 No |
When is a template a better solution than a base class?
What is a container class?
What are vectors used for in c++?
What is a friend function in c++?
Explain the isa and hasa class relationships.
How would perform Pattern Matching in C++?
What is time h in c++?
What is the main use of c++?
Write about the retrieval of n number of objects during the process of delete[]p?
Will a catch statement catch a derived exception if it is looking for the base class?
Which programming language should I learn first?
What are the main differences between C and C++?