Follow a specific naming convention for variables and classes
angad-k opened this issue · 1 comments
angad-k commented
like parameters having p_name, member variables having m_name, etc.
ayushgupta138 commented
Change the variable names according to the following convention :
- Change variable names to camel case format with the first letter small.
- Change class names to camel case format with first letter capital.
- Prepend all variable names by the following convention :
a) p_ => parameter variables
b) l_ => local variables
c) s_ => static variables
d) m_ => member data variables.