answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is it is true that the identifier and a variable in C programming language are same?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Is “C language” case sensitive programminIs “C language” case sensitive programming language If yes why and if no whyg language If yes why and if no why?

C is case sensitive, which means that, for example, $var and $VAR are not the same variable.


What is the difference between variable and identifier?

An identifier is simply the name of something, while a variable is an instance of something.For example:int x;Here, the identifier is "x," but the variable is the object whose name is "x." A: An identifier is a name of something. Typically used in computer programming, the term "identifier" is frequently used to name a variable (see below), a subroutine, are in reality, any place in memory in which data or code reside where a name would be useful. "MyBirthDate" might be a good identifier, pointing to a memory location where the data contianing your date of birth is stored. The term variable comes to us from mathematics, but is frequently used in computer science too. It refers to a value that varies. For instance: a + b = 5 In this case, the value of a and b can change, so long as the sum of a and b equal 5. The opposite of the term variable is constant. In the equation, E=Mc2, c is a constant that is equal to the speed of light in a vacu -- +- 186,000 miles per second. In computer science, the term "variable" is used synonymously with "identifier" when they are both used to point to memory that contains data that may be changed and will not always be the same. In Microsoft BASIC, the statement: Tomorrow = Today + 1 Today and Tomorrow are variables, and 1 is a constant.


Is there a real programming language that resembles GML - the language in Game Maker?

GML IS a real programming language. But anyway, all programming languages are about the same, with different syntax.


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.


What is Get Setting in programming language?

Data value (hold in a variable) in a program can be made safe by declaring it as private and public Getter and setter method can be written to access the same. So Getter/setter are the interface to outside world.

Related questions

What happens in programming any time a local variable in a method has the same identifier as a class field?

the program will work fine the value will be considered as the value of local variable in the particular method.


Is “C language” case sensitive programminIs “C language” case sensitive programming language If yes why and if no whyg language If yes why and if no why?

C is case sensitive, which means that, for example, $var and $VAR are not the same variable.


What is the difference between variable and identifier?

An identifier is simply the name of something, while a variable is an instance of something.For example:int x;Here, the identifier is "x," but the variable is the object whose name is "x." A: An identifier is a name of something. Typically used in computer programming, the term "identifier" is frequently used to name a variable (see below), a subroutine, are in reality, any place in memory in which data or code reside where a name would be useful. "MyBirthDate" might be a good identifier, pointing to a memory location where the data contianing your date of birth is stored. The term variable comes to us from mathematics, but is frequently used in computer science too. It refers to a value that varies. For instance: a + b = 5 In this case, the value of a and b can change, so long as the sum of a and b equal 5. The opposite of the term variable is constant. In the equation, E=Mc2, c is a constant that is equal to the speed of light in a vacu -- +- 186,000 miles per second. In computer science, the term "variable" is used synonymously with "identifier" when they are both used to point to memory that contains data that may be changed and will not always be the same. In Microsoft BASIC, the statement: Tomorrow = Today + 1 Today and Tomorrow are variables, and 1 is a constant.


Is there a real programming language that resembles GML - the language in Game Maker?

GML IS a real programming language. But anyway, all programming languages are about the same, with different syntax.


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.


What statement about selecting the right programming language for a project is false?

Programming languages require the same amount of time to excute.


What is Get Setting in programming language?

Data value (hold in a variable) in a program can be made safe by declaring it as private and public Getter and setter method can be written to access the same. So Getter/setter are the interface to outside world.


What is a difference between Programming language and peoplecode?

Logic is same, but syntax is different.


Is possible to declare a variable in a method and declare it a main?

The same identifier (variable name) may be used for at most one variable in each scope. Each method has its own scope, in addition to the global scope which is accessible from all others. However, each scope would have a different variable than every other scope despite using the same name for it.


What is micro and how it is different from c variable name?

A macro is a variable that has a constant value throughout the program whereas a C variable is an identifier whose value can differ from function to function, it can be incremented or decremented whereas the value of a macro remains same .


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.


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.