What problems might the following macro bring to the application?


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

Post New Answer

More C++ General Interview Questions

What is the difference between cin.read() and cin.getline()?

0 Answers  


What is iterator c++?

0 Answers  


make a middle node of doubly linklist to the top of the list

1 Answers  


Array base access faster or pointer base access is faster?

0 Answers  


What is iostream in c++ used for?

0 Answers  






How the virtual functions maintain the call up?

0 Answers  


What are signs of manipulation?

0 Answers  


Describe functional overloading?

6 Answers   HP,


What is size_type?

0 Answers  


What are function poinetrs? where are they used?

1 Answers   CTS,


What is RTRT tool?can it be used for automation?can it work on packet PC?

3 Answers  


class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list

2 Answers   Quark,


Categories