added two helpful tips (#26949)

* added two helpful tips

* Grammar cleanup and formatting changes
This commit is contained in:
N-Gohel
2019-02-15 10:25:37 +05:30
committed by Manish Giri
parent ce17020fed
commit f70bf00b7e

View File

@ -97,6 +97,11 @@ We get `15.300000`. So, say we just want two places after the decimal to give us
* Uppercase characters are considered distinct from lowercase characters. * Uppercase characters are considered distinct from lowercase characters.
* You cant use a C keyword for a name. * You cant use a C keyword for a name.
### Tips
* It is good to assigning meaningful names to variables, this kind of habit will be very helpful when you work in a company or organization where you have to work with group members. By making names meaningful, you can help others understand your code easily.
* For situations where you have more than one word to denote a variable, you can use camelCase syntax to name the variable.
# Before you go on... # Before you go on...
## A review ## A review
* Variables need to be created before they are used. * Variables need to be created before they are used.