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

Is c# written in c++?

0 Answers  


What is lambda expression c++?

0 Answers  


Can you use the function fprintf() to display the output on the screen?

0 Answers  


When should you use global variables?

0 Answers  


Difference between shift left and shift right?

1 Answers   Symphony,






advantages and disadvantages of using Borland C++ / version 5.

1 Answers  


What is different in C++, compare with unix?

0 Answers  


Is c++ the hardest programming language?

0 Answers  


Describe the process of creation and destruction of a derived class object?

0 Answers  


Explain selection sorting. Also write an example.

0 Answers  


what do you mean by volatile variable?

0 Answers  


what are function pointers?

0 Answers  


Categories