What are exceptions 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 benefit of learning c++?

0 Answers  


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

0 Answers  


List different attributes in C++?

0 Answers   Ericsson,


Explain the concept of dynamic allocation of memory?

0 Answers  


What does new do in c++?

0 Answers  






template<class T, class X> class Obj { T my_t; X my_x; public: Obj(T t, X x) : my_t(t), my_x(x) { } }; Referring to the sample code above, which one of the following is a valid conversion operator for the type T? a) T operator T () { return my_t; } b) T operator(T) const { return my_t; } c) operator(T) { return my_t; } d) T operator T (const Obj &obj) { return obj.my_t; } e) operator T () const { return my_t; }

1 Answers   Quark,


What is the use of bit fields in structure declaration?

0 Answers  


Floating point representation and output seems to be compiler dependent?

1 Answers  


Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work

0 Answers  


What is the use of string in c++?

0 Answers  


What is friend class in c++ with example?

0 Answers  


Describe run-time type identification?

1 Answers  


Categories