Answer Posted / 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 |
Post New Answer View All Answers
What is a set in c++?
What is class invariant in c++?
How do you clear a buffer in c++?
What is difference between c++ 11 and c++ 14?
Is there a sort function in c++?
Why do we need c++?
How would you obtain segment and offset addresses from a far address of a memory location?
What is the difference between global int and static int declaration?
Explain abstraction.
Does improper inheritance have a potential to wreck a project?
What is null pointer and void pointer and what is their use?
What is implicit conversion/coercion in c++?
Can java be faster than c++?
What is long in c++?
What is the use of setfill in c++?