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 friend class in c++ with example?
Explain deep copy and a shallow copy?
Explain all the C++ concepts using examples.
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
Explain about vectors in c ++?
Is there a c++ certification?
what is upcasting in C++?
What are function prototypes?
When there is a global variable and local variable with the same name, how will you access the global variable?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Which should be more useful: the protected and public virtuals?
Write a function to find the nth item from the end of a linked list in a single pass.
What is null and void pointer?
What are the storage qualifiers?
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?