๐ In C programming, identifiers are the names assigned to different entities such as variables, functions, arrays, etc.
๐A programmer has to follow certain rules while naming variables, functions, arrays, etc
๐C language is case-sensitive so, ‘name’ and ‘NAME’ are different identifiers.
๐The first character of an identifier must NOT be a number and may not contain a space.
๐An identifier can include letters (a-z or A-Z), and digits (0-9).
๐An identifier can only begin with an underscore or letters.
๐We cannot name identifiers the same as keywords because they are reserved words to perform a specific task.
๐If we use a keyword's name as an identifier the compiler will throw an error.
For example:
๐printf, scanf, int, char, struct, etc InValid Identifiers
๐emp_name,emp_sal ,stu_name,stu_no Valid Identifiers
No comments:
Post a Comment
Thank you Very Much.For Given Comment