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 |
what is the use of void main() in C++ language?
What is the difference between c++ and turbo c++?
Can I learn c++ in a week?
How do you allocate and deallocate memory in C++?
What is a node class in c++?
State the difference between delete and delete[].
What do you mean by friend class & friend function in c++?
What is the difference between map and hashmap in c++?
What is srand c++?
What are the advantages of C++ programming compared to C programming?
What are protected members in c++?
Will c++ be replaced?