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 corrected statement in c++ so that the statement will work properly. x = y = z + 3a;

0 Answers  


Explain queue. How it can be implemented?

0 Answers  


What are register variables?

0 Answers  


How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?

0 Answers  


What is ctime c++?

0 Answers  






List the advantages of inheritance.

0 Answers  


Define a way other than using the keyword inline to make a function inline?

1 Answers  


What is the precedence when there is a global variable and a local variable in the program with the same name?

0 Answers  


Write a program in c++ to print the numbers from n to n2 except 5 and its multiples

0 Answers   Cankaya University,


What is ios in c++?

0 Answers  


Why do we need c++?

0 Answers  


Can a built-in function be recursive?

0 Answers  


Categories