LValue Required
Hello
I have written the following code.
Code:
#include<stdio.h>
#include<conio.h>
void main()
{
int i = 0, a = 5, b = 6;
i = a - - b;
printf("i = %d", i);
}
When I execute this program, I have got an error message "LValue Required".
Can any one explain what does that mean.
Please guide. Thanks.
|