Coding Standards
Most languages have best practises when coding to ensure the maximum consistency and readability of code.
- Variable names must be in capitals, and begin with V_ to denote them as a variable. e.g. V_SCORE
- Array names must be in capitals, and begin with A_ to denote them as an array. e.g. A_VALUES
- Function names must be in capitals and begin with F_ to denote them as a function. e.g. F_MYFUNC