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 asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num

0 Answers   Care,


. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?

0 Answers  


What is an html tag?

0 Answers  


Write about c++ storage classes?

0 Answers  


What is the identity function in c++? How is it useful?

0 Answers  


Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?

0 Answers  


Why do we use templates?

0 Answers  


What is conditions when using boolean operators?

0 Answers  


What is Namespace?

5 Answers   HCL, Samsung,


What compiler was used?

6 Answers   Intel,


What is static function and static class?

4 Answers   HCL,


Explain the use of this pointer?

0 Answers  


Categories