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 |
write a program that a 5 digit number and calculates 2 power that number and prints it.
2 Answers Vimukti Technologies,
When is a template a better solution than a base class?
What is the difference between an array and a list?
Is c++ a high level language?
How are virtual functions implemented in c++?
What is copy constructor? Can we make copy constructor private in c++?
Can a program run without main in c++?
How is new() different from malloc()?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
What is the exit function in c++?
What is a friend function in c++?
What are templates? where we should use it?