main() { int i=5; printf("%d",++i++);} Answer: Compiler error: Lvalue required in function mainExplanation: ++i yields an rvalue. For postfix ++ to operate an lvalue is required.