What is lambda in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is a try block?

0 Answers  


Explain the problem with overriding functions

0 Answers  


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

1 Answers  


What are function poinetrs? where are they used?

1 Answers   CTS,


What's the hardest coding language?

0 Answers  






How does code-bloating occur in c++?

0 Answers  


State the difference between pre and post increment/decrement operations.

0 Answers  


What is DlgProc?

0 Answers   C DAC,


What is #include c++?

0 Answers  


Why c++ does not have finally?

0 Answers  


What sorting algorithm does c++ use?

0 Answers  


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.

2 Answers   Quark,


Categories