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 corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
Explain queue. How it can be implemented?
What are register variables?
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?
What is ctime c++?
List the advantages of inheritance.
Define a way other than using the keyword inline to make a function inline?
What is the precedence when there is a global variable and a local variable in the program with the same name?
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
What is ios in c++?
Why do we need c++?
Can a built-in function be recursive?