What size is allocated to the union variable?
No Answer is Posted For this Question
Be the First to Post Answer
what is C++ exceptional handling?
Which of the following is evaluated first: a) && b) || c) !
What do you understand by a pure virtual member function?
Write about the access privileges in c++ and also mention about its default access level?
Do you know what are pure virtual functions?
Does c++ vector allocate memory?
What is function prototyping? What are its advantages?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
How can a '::' operator be used as unary operator?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4
What is an iterator class in c++?