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
Explain differences between alloc() and free()?
What is a dll entry point?
List the merits and demerits of declaring a nested class in C++?
What size is allocated to the union variable?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
give me an example for testing a program showing the test path .show how the test is important and complex.
What is the difference between a pointer and a link in c ++?
Explain the differences between list x; & list x();.
How does a C++ structure differ from a C++ class?
What is object in c++ example?
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
Explain the difference between new() and malloc() in c++?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
What is lvalue?
What is abstract keyword in c++?