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 |
How do you flush std cout?
What causes a runtime error c++?
What can I use instead of namespace std?
What is namespace std; and what is consists of?
Write a program using GUI concept for the scheduling algorithms in Operating system like SJF,FCFS etc..
What are the extraction and insertion operators in c++?
What is the extraction operator and what does it do?
What is a c++ class?
What do you know about near, far and huge pointer?
How are pointers type-cast?
Why pointer is used in c++?
Ask to write virtual base class code?