Hello
I know c programing has identifiers so I am trying to understand which is identifiers in below program.
I think define, LED, P2_0, and P2_1. these are the identifier in program because identifier start with a letter A to Z or a to z or underscores, and digits (0 to 9).
what is use of identifier in C programming ?
I know c programing has identifiers so I am trying to understand which is identifiers in below program.
Code:
#include<p89v51rd2.h>
#define LED P2_0
#define LED P2_1
main ( )
{
}
what is use of identifier in C programming ?