Which of the following is a correct identifier in C++ ?
Please first select an option.
- abc_1234: This is a valid identifier as it starts with a letter "a" and contains letters, digits, and underscores.
- $abc_var: This is not a valid identifier because the first character is a dollar sign ($), which is not allowed in C++ identifiers.
- 7ABC_var: This is not a valid identifier because it starts with a digit "7." Identifiers cannot begin with a digit; they must start with a letter or underscore.
- 7abc.var: This is not a valid identifier because it contains a dot (.) character. Dot is not allowed in C++ identifiers.