InterviewSolution
Saved Bookmarks
| 1. |
What is the use of RAII in c++ programming?(a) Improve the exception safety(b) Terminate the program(c) Exit from the block(d) Crash the compiler |
|
Answer» Right option is (a) Improve the exception safety Easy explanation - RAII is used to improve the exception safety. |
|