This shows you the differences between two versions of the page.
| — |
c:keywords:const [2024/02/16 01:06] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== 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//];'' | ||