An identifier is a name that identifies either a unique object or a unique class of objects.
Questions tagged [identifier]
1353 questions
-4
votes
3 answers
JavaScript warning on var element
Have defined:
var ru_cryptopro_npcades_10_native_bridge = {
callbacksCount : 1,
callbacks : {},
resultForCallback : function resultForCallback(callbackId, resultArray) {
var callback =…

Secret
- 2,627
- 7
- 32
- 46
-4
votes
2 answers
Why # can not use in java identifier?
Please let me explain that # can not use in java identifier.
For example. int e#;
And also, let me know that # is used in java and where to use?

Eido Shack
- 65
- 2
- 11
-4
votes
3 answers
I get "greedy.c:17:1: error: expected identifier or '(' {" Can someone help? It is referring to the line after int main(void)
/**************************************************
* Greedy.c
*
* CS50x pset1
* Daniel Riley
*
* A program that determines the minimum amount of
* coins used for change owed
*
*
**************************************************/
…
-4
votes
2 answers
ints or guids for table identifiers
Possible Duplicate:
SQL primary key, INT or GUID or..?
What is the best practise for using unique identifiers in sql server tables?
I have seen articles regarding using guid's or int's with pros and cons for each.
I am looking to go with the…

amateur
- 43,371
- 65
- 192
- 320
-5
votes
3 answers
Why is "number" undeclared when I declared it in the function?
#include
void numberisone()
{
int number = 1;
}
int main()
{
numberisone();
printf("%d", number);
return 0;
}
I'm fairly new to programming so make the explanation as simple as possible :) Thanks in advance!

flyerz
- 13
- 5
-5
votes
1 answer
There is an identifier expected but i don't know what i need to put there
What kind of identifier does the visual studio needs ? i just want to put from outside one int array with 2 different numbers between 0 and 66.
public static void playerLocationChange(int[])
{
}

nightxx
- 25
- 6
-5
votes
4 answers
Java extending classes mess
I don't know what pot I was smoking when I posted the original, but I came to my senses and came up with this. I am not an experienced coder, but the entire post was made mostly as a question that for the most part has been answered. I now know…

Dont
- 35
- 7
-5
votes
3 answers
Maximum length of identifiers in Turbo C++ and Dev-C++ for both C and C++ languages
What is the maximum length of variable identifiers of C and C++ in Turbo C++ and Dev-C++?

sana
- 410
- 2
- 6
- 24
-6
votes
1 answer
Differences between Java identifiers and Unicode identifiers?
In the Characters API of Java 19, I saw 2 methods:
isJavaIdentifierStart
isUnicodeIdentifierStart
The first one is applied to Java identifiers and the second one for Unicode identifiers.
However, I don't understand the differences between two…

locobe
- 69
- 7
-6
votes
1 answer
Big Arrays and identifiers
private Target A7; targetArray [];
When I compiled it, it says I need a identifier for the array size. I need to know what that is and where it would go.

Austin Hawks
- 1
- 4
-6
votes
1 answer
How to use keyword as an identifier in c?
I read on a book of C Language "LET US C" that certain keywords can be used as an identifier but i don't know how.
CAN ANY ONE HELP ?
-8
votes
1 answer
C# GCP auth2.0 403 mismatch redirect
I'm using this code to try to get the auth from Google:
await HttpContext.ChallengeAsync("Google", new AuthenticationProperties() {RedirectUri = "/"});
The thing is the redirect always take the HTTP url even if I'm running it from https url.
The…

Youness Abbassi
- 11
- 1
- 4
-8
votes
1 answer
How can I use the same name for two or more different variables in a single C# function?
How do I delete a variable that is once declared and defined?
For example, in C++ I would do:
int x;
..
delete x;
How can I do it in C#?
(i need to do something like this:
switch (something)
{
case 1:
int Number;
break;
case 2:
float…

Acrivec
- 11
- 5
-8
votes
1 answer
Is int π; is valid syntax in java?
I have some doubt ,i want to know that is int π; is a valid syntax in Java Or Not because Java support UNICODE so according to me it can be valid but I want to make sure

user2134725
- 1
- 1
-8
votes
2 answers
xCode iOS Dev - Parse Issue : Expected Identifier?
Check this out & let me know what you guys think is wrong.
Thank you very much. :)

PsychedelicFuzz
- 17
- 7