Every C variable must be distinguished by a unique name.
These distinctive labels are referred to as identifiers.
Identifiers can range from brief names (such as x and y) to more descriptive ones (like age, sum, and totalVolume).
Note: It’s advisable to employ descriptive names to ensure the clarity and maintainability of your code.
// Good variable name int minutesPerHour = 60; // OK, but not so easy to understand what m actually is |
The general guidelines for naming variables are: