jignesh doshi
Full Member level 2
Hello All,
I got error
When I Add above code at that time this error comes, so how can i remove this error?
I got error
C213 : Left Side of Assignment Operator not an L-Value while programming with AT89C55WD.
C:
void bit_sep_32(unsigned char c)
{
unsigned char w;
for(w=1;w<=c;w++)
{
h=a/10;
d[w]=a%10;
d[w]=d[w]+0x30;
a=h/10;
w++;
d[w]=h%10;
d[w]=d[w]+0x30;
}
}
When I Add above code at that time this error comes, so how can i remove this error?
Last edited by a moderator: