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
Tell me difference between constant pointer and pointer to a constant.
What is a manipulative person?
Why do we use using namespace std in c++?
Explain the use of this pointer?
What are the two types of polymorphism?
What is pointer to array in c++?
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
In inline " expression passed as argument are evalauated once " while in macro "in some cases expression passed as argument are evaluated more than once " --> i am not getting it plz help to make me understand....
Explain the purpose of the keyword volatile.
Can you explicitly call a destructor on a local variable?
How many keywords are used in c++?
What is the best way to take screenshots of a window with c++ in windows?
How would you differentiate between a pre and post increment operators while overloading?
What apps are written in c++?
Is c++ an integer?