What is syntax of try and catch block in exception handling in Cpp? All Questions › Category: Cpp Language › What is syntax of try and catch block in exception handling in Cpp? 0 Vote Up Vote Down Chetan Shidling asked 5 years ago I need short information. 1 Answers 0 Vote Up Vote Down chetan shidling answered 5 years ago The general syntax of try/catch block is try { //statements } catch (datatype1 identifier) { //code to handle the exceptions } catch (datatype2 identifier) { //code to handle the exceptions }