What is an incomplete type?



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

Post New Answer

More C++ General Interview Questions

Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .

0 Answers  


What is a container class? What are the types of container classes in c++?

0 Answers  


What is #include c++?

0 Answers  


What is c++ code?

0 Answers  


How do you remove an element from a set in c++?

0 Answers  






what do you mean by volatile variable?

0 Answers  


What is the best c++ book for beginners?

0 Answers  


How is modularity introduced in C++?

0 Answers   TCS,


Why the usage of pointers in C++ is not recommended ?

0 Answers   TCS,


Explain selection sorting. Also write an example.

0 Answers  


Explain register storage specifier.

0 Answers  


#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }

1 Answers   Infosys,


Categories