Wednesday, 8 August 2012

Which of the following is the most general exception handler that catches exception of ‘any type’? | C++

a. catch(std::exception)
b. catch(std::any_exception)
c. catch(…)
d. catch()

Ans: c

No comments: