What are single and multiple inheritances in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is flag in computer?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
Are there interfaces in c++?
Explain friend class?
write a program in c++ to generate imp z y x w v w x y z z y x w x y z z y x y z z y z z
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
CAN U SAY WHICH PROGRAMING LANGUAGE IS USED BY DOCTORS....?
What is overloading unary operator?
Write a program to swap 2 chars without using a third varable? char *s = "A"; char *p = "B";
Describe private, protected and public?
Does c++ have foreach?
What is data binding in c++?