Microcontroller › 8051 › Significance of * (star) in this program › First of all you need a basic
December 13, 2013 at 5:45 am
#10730
Participant
First of all you need a basic knowledge of C lang….
by the way it is not star but is is called as a POINTER…..
void lcd_data(unsigned char *disp)
{
while(*disp)
lcd_disp(*disp++);
}
explanation..
while(*disp) is conditional statament if Your character is not null ( ‘