What is lambda in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is a try block?
Explain the problem with overriding functions
write a program that will produce the ff. output. "what fruit will you buy? 1)apple 2)orange 3)mango ENTER CHOICE (1,2 or 3)> HOW MANY WILL YOU BUY?> THAT WILL COST XX.XX
What are function poinetrs? where are they used?
What's the hardest coding language?
How does code-bloating occur in c++?
State the difference between pre and post increment/decrement operations.
What is DlgProc?
What is #include c++?
Why c++ does not have finally?
What sorting algorithm does c++ use?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.