adsense

Hii, welcome to my site. My name is Om prakash kartik. This blog helps you to learn programming languages concepts.

Identifiers in C language




Identifiers :- Identifiers refer to the names of  variables, functions, arrays, structures etc. These are user-defined names and consist of a sequence of letters and digits. Both uppercase and lowercase letters are permitted, although lowercase letters are commonly used. The underscore character is also permitted in identifiers. It is usually used as a link between two words in long identifiers.

Rules for identifiers

  1. First character must be an alphabet or underscore.
  2. Must consist of only letters, digits or underscore
  3. Only first 31 characters are significant.
  4. Can't use a keywords.
  5.  Must not contain white space and spacial symbols. 


Post a Comment

0 Comments