answersLogoWhite

0

If you mean 'are identifier of an object and nameof an object synonyms?', then yes, they are.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Is the identifiers 'name' and 'NAME' different in c?

Yes they is different, C language are case-sensitive.


What is the exact definition of identifiers in c language?

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


What are variable name?

Invalid variable names are identifiers that are not recognised by the language compiler. All user-defined identifiers (both names and type definitions) must be introduced to the compiler by a declaration. A definition is also a declaration, however a definition is not required to use a name, only the declaration. However, all declarations must be defined somewhere. Different programming languages have different conventions for naming identifier. However, in most languages, a name must always begin with a letter or an underscore, never a digit, because a leading digit usually signifies a value and would only complicate the language compiler's implementation. Case-sensitive languages, such as C treat 'name', 'Name' and 'NAME' as being different identifiers while case-insensitive languages will treat them as being the same identifier.


Can a reserved word be used as an identifier name?

Identifiers are a bit more generic in the context of programming. If you mean, in terms of the C languages (C, C++, C#), the question is the reverse...keywords may NOT be used as identifiers. For example, you cannot use keywords such as "int", "float", "double", etc. as the names of variables or objects.


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


What are invalid variable names?

Invalid variable names are identifiers that are not recognised by the language compiler. All user-defined identifiers (both names and type definitions) must be introduced to the compiler by a declaration. A definition is also a declaration, however a definition is not required to use a name, only the declaration. However, all declarations must be defined somewhere. Different programming languages have different conventions for naming identifier. However, in most languages, a name must always begin with a letter or an underscore, never a digit, because a leading digit usually signifies a value and would only complicate the language compiler's implementation. Case-sensitive languages, such as C treat 'name', 'Name' and 'NAME' as being different identifiers while case-insensitive languages will treat them as being the same identifier.


2 types of identifiers in C programming language?

1. identifiers beginning with a letter 2. identifiers beginning with an underscore


What is a valid c plus plus identifier?

In C++ we provide names for the entities we create, the variables, functions and types in our programs. These names, or identifiers, are required to conform to some simple rules.An identifier must start with a letter and is comprised of a sequence of letters and digits. Somewhat surprisingly, in this context the underscore _ is considered to be a letter (although there are conditions associated with its use). There's no restriction on the length of an identifier.


Can give an example of identifier in c?

In C, an identifier is a name used to identify a variable, function, array, or any other user-defined item. For example, in the declaration int age;, the word age is an identifier representing an integer variable. Identifiers must begin with a letter or underscore, followed by letters, digits, or underscores, such as myVariable, count1, or _temp. They are case-sensitive, meaning Variable and variable would be considered different identifiers.


What is the identifiers in turbo c?

all keywords


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 a different name for a letter?

Letter as in A, B, C, D, ect? If that is the case, then another name for letter is "Character"