Computer Science, asked by mishravinay5018, 10 months ago

What are the rules to define identifier in C++ Programming language?

Answers

Answered by sandeepmulpuru699
0

Answer:

The rules of naming identifiers in C++ :

C++ is case-sensitive so that Uppercase Letters and Lower Case letters are different.

The name of identifier cannot begin with a digit. ...

Only alphabetic characters, digits and underscore (_) are permitted in C++ language for declaring identifier.

Explanation:

MARK ME AS A BRAIN LIST

Similar questions