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
What are the manipulators in c++?
What are c++ data types?
What do the header files usually contains?
What is the difference between while and do while loop? Explain with examples.
Write a function that swaps the values of two integers, using int* as the argument type?
Will c++ be replaced?
What is enum class in c++?
What is a v-table?
What is iomanip c++?
What is private public protected in c++?
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
What is a base class?
What jobs can you get with a c++ certification?
What is switch case in c++ syntax?
Why are pointers not used in c++?