answersLogoWhite

0

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

Updated: 8/20/2019
User Avatar

Wiki User

10y ago

Best Answer

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

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the hearing rods for identifier '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.


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.


What is the exact definition of identifiers in c language?

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


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).


Can you pass addresses to a function in C plus plus?

If the identifier you want to pass is an ordinary identifier, pass it as the address of... function(&identifier); If the identifier you want to pass is an array identifier, pass its name... function(arrayname);


Is cin an output identifier in c plus plus?

No. In C++ with <iostream>, cin is a prefedined class that represents stdin, so it is an input identifier.


Definition of Identifier in C Language?

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.


What is a identifier in C?

examples: main, argc, _index, s13