Unit 2 2.1 Identifiers Flashcards
1
Q
These are names that are used to reference variables, functions, labels, and various other user-defined object; sequence of letters, digits and the special character-, which is called an underscore
A
Identifiers
2
Q
What are the 4 Rules in naming Identifiers?
A
- An Identifier can vary from one to several characters.
- Must consist only of alphabetic characters, digits, or underscores.
- The first 63 characters of an identifier name are significant.
- An identifier may not be the same as a Turbo C keyword, and it should not have the same
name as a function.