Select Category 
c++ interview questions answers c++ interview question answer.
What is an incomplete type?
c++ interview questions answers c++ interview question answer.

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.

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.

c++ interview questions answers c++ interview question answer. c++ interview questions answers c++ interview question answer. c++ interview questions answers c++ interview question answer. c++ interview questions answers c++ interview question answer. c++ interview questions answers c++ interview question answer.
c++ interview questions answers c++ interview question answer.  c++ interview questions answers c++ interview question answer.  c++ interview questions answers c++ interview question answer.  c++ interview questions answers c++ interview question answer.  c++ interview questions answers c++ interview question answer.  c++ interview questions answers c++ inter
 

C++ Interview Questions Answers

C++ Interview Question - 136 : -

What is an incomplete type?

C++ Interview Answer - 136 : -

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.

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.

 

C++ Interview Question - 137 : -

Are there any new intrinsic (built-in) data types?

C++ Interview Answer - 137 : -

Yes. The ANSI committee added the bool intrinsic type and its true and false value keywords.