"HARD WORK BEATS TALENT WHEN TALENT DOSEN'T WORK HARD."
"HARD WORK BEATS TALENT WHEN TALENT DOSEN'T WORK HARD."
Identifier is nothing but a name. In programming language variable name is acting as an identifier. Any name in C language can be represented as identifier, that name can be used to identify the particular things.
a variables name, a function name, a array name pointer name, structure, union, enum, label name etc.
In every programming language have their own identifier rules. C language also follow some rules.
int a; int abc; int _xyz; int btn123; int dfg_123;
int 123; int 12abc; int $xyz; int xyz@;
int num = 10; int Num = 20; int NUM = 30;
In above example you will see different-different variables and all variables have same name. They are different in just case sensitive way. So the output will be different.