What is c++ coding?
No Answer is Posted For this Question
Be the First to Post Answer
What are friend functions?
What is general form of pure virtual function? Explain?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
What are built-in functions? What is the syntax for the definition?
What is cloning?
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
What is a conversion constructor?
How do you establish a has-a relationship?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
Write my own zero-argument manipulator that should work same as hex?
Write a C++ program to sort digits of all the 4 digit number and display the sorted 4 digit number