+ 1
What is Identifier?
Hey fellas! Can anyone help explain with example, what does ' IDENTIFIER' mean. I didn't get that piece, please.
3 Answers
+ 4
Hey , the identifier is used as alias for example int A= 15 so You can now only write a instead of 15
+ 2
An identifier is a name given to memory location.
In simple words it is like a variable which can be used to store values.
Example:
int x=2;
Here it stores the value 2 in the identifier(variable) x.
The value of x can be changed too as per the need.
+ 1
Lots of gratitude to you buddies, it helped a lot.