Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Which of the following special symbol allowed in a variable name? ?->(Show Answer!)
1. Which of the following special symbol allowed in a variable name?
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
Variable names in C are made up of letters (upper and lower case) and digits. The underscore character ("_") is also permitted. Names must not begin with a digit. Examples of valid (but not very descriptive) C variable names:
=> foo
=> Bar
=> BAZ
=> foo_bar
=> _foo42
=> _
=> QuUx
=> foo
=> Bar
=> BAZ
=> foo_bar
=> _foo42
=> _
=> QuUx