answersLogoWhite

0


Best Answer

Identifiers or symbols are the names you supply for variables,type,function and labels.Identifiers names must differ in spelling and case from any keyword.you cannot use keyword as an identifier.you can create an identifier by specifying it in the declaration of a variable,type or function.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Definition of Identifier in C Language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is an identifier. what are the hearing rods for identifier 'c' language?

An identifier is the names given for labels, functions and variables in the c language.


What are the hearing rods for identifier 'c' language?

The hearing rods for identifier "c" language is the function.


What is the exact definition of identifiers in c language?

An identifier is a name. All names must be declared with a type.


Is it is true that the identifier and a variable in C programming language are same?

No. Identifier is a scientific name for the name.Variables, functions, types, etc -- each have an identifier.


Are a10 and 10a same in C language?

No, 'a10' and '10a' are not the same in the C language. In C, identifier names must start with a letter or an underscore, so 'a10' is a valid identifier, while '10a' is not.


How to design a DFA that accepts an identifier in c language?

letter -> [a-zA-Z] digit -> [0-9] identifier -> letter|_(letter|digit|_)


Why keyword cannot be used as an identifier in c language?

It's by design; this way the lexical parser is able to decide that any given string is a keyword or an identifier.


Is c sharp scripting language?

What is a scripting language? If you know the answer to this, then you can determine C# fits to the definition or not.


Is hello is an identifier token?

Yes. The word "hello" can be an identifier token. It is not a reserved word in C or C++, and it meets the criteria for being an identifier.


What is swap in c plus plus programming language?

It is not a reserved word, so can be an identifier (name of a type/variable/function).


How do you name a variable in C?

Examples: i, alpha, tmp. Formal definition: variable_name --> identifier identifier --> firstchar [morechars] morechars --> nextchar [morechars] firstchar --> A..Z a..z _ nextchar --> A..Z a..z 0..9 _


What is the rules to be valid identifier?

In what language?