Answer Posted / 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 View All Answers
Write a note about the virtual member function?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
Which should be more useful: the protected and public virtuals?
What flag means?
What is virtual methods?
Difference between Abstraction and encapsulation in C++?
What is c++ course?
What do you mean by early binding?
Define whitespace in C++.
What do you mean by stack unwinding in c++?
What are different types of loops in c++?
What is algorithm in c++ programming?
Will this c++ program execute or not?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
Write about all the implicit member functions of a class?