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 should I use unitbuf flag?
Explain linked list using c++ with an example?
What do manipulators do?
What does ios :: app do in c++?
What is searching? Explain linear and binary search.
Differentiate between late binding and early binding.
How do you flush std cout?
What is an adaptor class or wrapper class in c++?
Can we define a constructor as virtual in c++?
What's the hardest coding language?
What is anonymous object in c++?
What is object slicing and how can we prevent it?