From 1672a60482a32bdb252b62c22ce86a5951222610 Mon Sep 17 00:00:00 2001 From: wolfwhocodes <40625914+wolfwhocodes@users.noreply.github.com> Date: Fri, 23 Nov 2018 15:55:36 +0530 Subject: [PATCH] Update on Names for variables (#23286) Updated the rules for the first character of the variable name --- guide/english/c/variables/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/variables/index.md b/guide/english/c/variables/index.md index d1406dbccf..f273056da5 100644 --- a/guide/english/c/variables/index.md +++ b/guide/english/c/variables/index.md @@ -93,7 +93,7 @@ We get `15.300000`. So, say we just want two places after the decimal to give us # Names for Variables * The only characters you can use in names are alphabetic characters, numeric digits, and the underscore (_) character. -* The first character in a name cannot be a numeric digit. +* The first character in a name cannot be a numeric digit. It can be a letter from A to Z or a to z or the underscore character. * Uppercase characters are considered distinct from lowercase characters. * You can’t use a C keyword for a name.