what are Identifier in c++ language? programming in c++
Chapter No 2 Programming in c++ what are Identifier in c++ language? Identifier are names that is represent as variable,constants,functions and labels in the program. Identifier is importance feature of all programming language. Identifier in c++ may consist of 31 characters. If name of identifier is more than 31 characters first 31 character can be used remaining is ignore. Some important rules for identifiers as follows The first character must be an aliphatic or underscore(_) The reserved words cannot be used as identifiers Types of Identifiers👈 The are two type of identifiers Standard Identifiers User Defined Identifiers Standard Identifiers is type of identifiers that having special meaning in the c++ language is called standard id...