Computer Science, asked by Souravthapa152, 6 months ago

/in c language can the first letter of the identifier be underscore . true or false ​

Answers

Answered by bhrpip007
3

Answer:

true

Explanation:

Rules for an Identifier

An Identifier can only have alphanumeric characters(a-z , A-Z , 0-9) and underscore( _ ). The first character of an identifier can only contain alphabet(a-z , A-Z) or underscore ( _ ). Identifiers are also case sensitive in C. For example name and Name are two different identifiers in C....

Similar questions