What is a block 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 the c++ code?

0 Answers  


What is the difference between equal to (==) and assignment operator (=)?

0 Answers  


Will a catch statement catch a derived exception if it is looking for the base class?

0 Answers  


What is the latest version on c++?

0 Answers  


write a programming using for loop in c++ to generate diamond trangel?

1 Answers   NIIT,






What are advantages of using friend classes?

0 Answers  


Define the process of error-handling in case of constructor failure?

0 Answers  


Why pure virtual functions are used if they don't have implementation / When does a pure virtual function become useful?

1 Answers  


Why we use #include conio h in c++?

0 Answers  


Explain the difference between class and struct in c++?

0 Answers  


What is setbase c++?

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