When are exception objects created?


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

Post New Answer

More C++ General Interview Questions

If dog is a friend of boy and boy is a friend of house, is dog a friend of house?

0 Answers  


Explain mutable storage class specifier.

0 Answers  


How to declaring variables in c++?

0 Answers  


Can you sort a set c++?

0 Answers  


What is a static element?

0 Answers  


is throwing exception from a constructor not a good practice ?

5 Answers   Ericsson,


what is smart pointer & use of the smart pointer ???

2 Answers  


Find the second maximum in an array?

12 Answers   HCL,


How to reduce a final size of executable?

3 Answers  


What is runtime errors c++?

0 Answers  


Is c the same as c++?

0 Answers  


this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }

1 Answers  


Categories