answersLogoWhite

0

Can give an example of identifier in c?

Updated: 9/17/2023
User Avatar

Wiki User

14y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Can give an example of identifier in c?
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 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 are the hearing rods for identifier 'c' language?

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


What is meant by identifier?

An identifier is the friendly name used by the compiler to represent the location of an object in memory. You could say *0x1234 = *0x3464 + *0x9587, or you could say A = B + C, given that A, B, and C, had those addresses. A, B, and C are identifiers in this example.


What is the difference between identifiers and variables in C lang?

a variable having the datattype and name, an identifier is the name of the variable for example int x; here int x; is the variable x is the identifier


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


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.


What is the similarity between an identifier and a variable?

Answer:- identifier is the name like a, b, c, .... which is used to reference a memory location in a program. +-variable is the actual memory location which can hold values.so 'a' is an identifier to a variable which is memory location located somewhere in memory.Answer:A Variable in Java is something that holds a particular value in a class. For example:public class A { private String name = ""; ......} In the above declaration name is a variable. It would hold the data of type String.An Identifier is nothing but the name that we give for our variables, classes, methods etc. It is nothing but the name with which we identify an entity in Java. For example here A is the identifier for the class, name is the identifier for the variable etc.


What is a identifier in C?

examples: main, argc, _index, s13


What is console in c?

Nothing. (You can use this word as identifier though.)


Why you use class keyword in c?

You may use it as an identifier, because it is not a reserved word in C.