====== const ====== The ''const'' keyword is used to denote something is constant. It prohibits any future assignments to the variable or pointer. === Syntax === ''const //type// //variable-name// [ = //value//];''