Increment (Decrement) operators require L-value Expression
What will be the output of the following program?
#include<stdio.h> int main() { int i = 10; printf ( "%d" , ++(-i)); return 0; } |
A) 11 B) 10 C) -9 D) None
Answer: D, None – Compilation Error.
Explanation:
In C/C++ the pre-increment (decrement) and the post-increment (decrement) operators require an L-value expression as operand. Providing an R-value or a const qualified variable results in compilation error.
In the above program, the expression -i results in R-value which is operand of pre-increment operator. The pre-increment operator requires an L-value as operand, hence the compiler throws an error.
The increment/decrement operators needs to update the operand after the sequence point, so they need an L-value. The unary operators such as -, +, won’t need L-value as operand. The expression -(++i) is valid.
In C++ the rules are little complicated because of references. We can apply these pre/post increment (decrement) operators on references variables that are not qualified by const. References can also be returned from functions.
Puzzle phrased by Venki. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- Pre-increment (or pre-decrement) in C++
- Increment (++) and Decrement (--) operator overloading in C++
- lvalue and rvalue in C language
- Pre-increment and Post-increment in C/C++
- Operators in C | Set 2 (Relational and Logical Operators)
- Operators in C | Set 1 (Arithmetic Operators)
- Why does sizeof(x++) not increment x in C?
- Lambda expression in C++
- Can we use function on left side of an expression in C and C++?
- std::regex_match, std::regex_replace() | Regex (Regular Expression) In C++
- # and ## Operators in C
- Operators in C / C++
- C | Operators | Question 16
- C | Operators | Question 17
- C | Operators | Question 18