How do you catch an exception by reference in C++?
A. Using a catch block with an ampersand (&) after the exception type
B. Using a catch block with an asterisk (*) after the exception type
C. Using a catch block with no specifier after the exception type
D. Using a catch block with a 'ref' keyword after the exception type
Answer: Option A
Join The Discussion