Lvalue required| minus

main()
{
Int d=- -3;
printf(“d=%d”,d);
}
Tutorial answer:Compiler error: value required
Debugging solution: we cannot apply decrement operator - - to the numerical no.(decrement operator apply only to the variable 0

Post a Comment

0 Comments