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 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
. 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?
What is an html tag?
Write about c++ storage classes?
What is the identity function in c++? How is it useful?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
Why do we use templates?
What is conditions when using boolean operators?
What is Namespace?
What compiler was used?
What is static function and static class?
Explain the use of this pointer?