From f70bf00b7e27761b33fb0dbbfe7877016eec8f54 Mon Sep 17 00:00:00 2001 From: N-Gohel <37478237+N-Gohel@users.noreply.github.com> Date: Fri, 15 Feb 2019 10:25:37 +0530 Subject: [PATCH] added two helpful tips (#26949) * added two helpful tips * Grammar cleanup and formatting changes --- guide/english/c/variables/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/guide/english/c/variables/index.md b/guide/english/c/variables/index.md index f273056da5..1114e5978d 100644 --- a/guide/english/c/variables/index.md +++ b/guide/english/c/variables/index.md @@ -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. * You can’t 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... ## A review * Variables need to be created before they are used.