throw Can constructors exceptions?
Answer / nashiinformaticssolutions
Yes, constructors can throw exceptions, but the object won't be created.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain Text Manipulation Routines?
Write some differences between an external iterator and an internal iterator?
What is the purpose of templates in c++?
what are the iterator and generic algorithms.
What is endl?
What is implicit pointer in c++?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
what is the use of templates?
How to implement is-a and has-a class relationships?
What is rvalue?
What is the difference between interpreters and compilers?
How does java differ from c and c++?