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 volatile and pragma? When they are used?
how to explain our contribution in the project?
What is the type of 'this' pointer? When does it get created?
Is there something that we can do in C and not in C++?
throw Can constructors exceptions?
How would you differentiate between a pre and post increment operators while overloading?
What is RAII (Resource Acquisition Is Initialization)?
Define inline function
What is an adaptor class or Wrapper class?
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
Differentiate between a deep copy and a shallow copy?
Why would you make a destructor virtual?