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 an arraylist c++?
How compile and run c++ program in turbo c++?
What does floor mean in c++?
What is the difference between a class and a structure in C++?
Can char be a number c++?
Why we use #include conio h in c++?
How do you write a function that can reverse a linked-list?
What is meant by a delegate?
What is string in c++ programming?
What is the stack?
Are there any new intrinsic (built-in) data types?
What are c++ variables?