answersLogoWhite

0

It refers to a place in your code where names or variable have meaning.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the scope of c?

Describe the concept of Scope :Incomputer programming, ascopeis the context within acomputer programin which avariable nameor other identifier is valid and can be used, or within which adeclarationhas effect. Outside of the scope of a variable name, the variable's value may still be stored, and may even be accessible in some way, but the name does not refer to it; that is, the name is notboundto the variable's storage


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 does rifle scope magnifications refer too?

How many times larger the image in the scope appears. A 4 power scope makes the image 4 times larger.


In C plus plus I want to use an if statement so if the word in a char array is lets say hi it will perform an operation but what it does is says undeclared identifier please explain in simple manner?

I don't know what your code looks like since you haven't actually provided any, but the compiler is telling you that you are trying to use an identifier that is not in scope. You may or may not have declared the identifier, but if it is not in scope then it is effectively undeclared. The following example illustrates this: for(int i=0; i<10; ++i) std::cout<<i<<std::endl; i=i+1; // ERROR: Undeclared identifier. i is no longer in scope To resolve this problem, we must move the declaration of i outside of the loop, thus making it accessible both inside and outside of the loop: int i; for(i=0; i<10; ++i) std::cout<<i<<std::endl; i=i+1; // OK


What does wireless ssid mean?

It's short for service set identifier


What is partial identifier in DBMS?

An attribute used as a unique identifier but not qualifying for it. A good example would be "Name" attribute in "Kid" entity - it's not unique, there can be other kids with the same name. I hope that helped anyone.


What is a unique item identifier?

a unique item identifier means what?


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 keyward is identifier?

Isn't keyward isn't identifier.


How do you spell indentifyer?

Identifier....


Is A N D is an identifier?

A N D is not an identifier as it has spaces in between each letter. A valid identifier DOES NOT have space in it.


What is identifier in compiler design programs?

identifier is a letter , digit.