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
Why do we need c++?
What does floor mean in c++?
What do the keywords volatile and mean mutable?
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)
Explain queue. How it can be implemented?
Can you use the function fprintf() to display the output on the screen?
You want to link a c++ program to c functions. How would you do it?
Eplain extern keyword?
How we can differentiate between a pre and post increment operators during overloading?
How do I download c++?
What is isdigit c++?
What is type of 'this' pointer? Explain when it is get created?
Why we use #include iostream in c++?
Is it possible to write a c++ template to check for a function's existence?
What is a .h file c++?