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 |
Why did you leave your last job?
Is there a c++ certification?
Explain the use of this pointer?
How new/delete differs from malloc()/free?
Write a C++ Program to Multiply two Numbers
What is c++ manipulator?
Why is c++ is better than c?
What does scope resolution operator do?
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
Why c++ is not a pure oop language?
Why is c++ called oops?
What is late binding c++?