Error Lvalue required

void main()
{
printf(“%d”,++5);
}
Tutorial answer:
Lvalue required
Debugging solution:
5 it is constant, it is not variable so we can not change constant value. so it will display error Lvalue required

Post a Comment

0 Comments