c中的Rvalue和Lvalue是多少?

what is the Rvalue and Lvalue in c

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicates:
lvalue and rvalue
difference between c's expression and c++'s expression

在执行下面的程序时,我收到一条错误消息,如"主函数中缺少必需的左值"

1
2
3
4
5
main()
{
    int i;
    printf("%d",++i++);
}

请告诉我什么是价值观和价值观。如果还有其他类似的值,请解释一下。


http:/ / / / / 5696 www.devx.com提示提示


i事需要左值(I + + + + i)是错误的。