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
How the programmer of a class should decide whether to declare member function or a friend function?
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....
What is the iunknown interface?
How much do c++ programmers make?
What do you mean by ‘void’ return type?
How do you sort a sort function in c++ to sort in descending order?
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
What is a hashmap c++?
How the keyword struct is different from the keyword class in c++?
What are stacks?
Difference between a homogeneous and a heterogeneous container
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
Explain the difference between static and dynamic binding of functions?
When do we run a shell in the unix system? How will you tell which shell you are running?