Saved Bookmarks
| 1. |
In C language can the first letter of the Identifier be Underscore? |
|
Answer» ONG>Answer: Ans- Yes 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. Happy to help, |
|