what will be the output of following code
int x,a=3;
x=+ +a+ + +a+ + +5;
printf("%d %d",x,a);
ouput is: 11 3. I want to know how? and what does + sign after a means?
|
I think DrYap has it right.
is the same as:
The key points here are: 1) c, c++ don't have + as a postfix operator, so we know we have to interpret it as a prefix 2) monadic + binds more tightly (is higher precedence) than dyadic + Funny isn't it ? If these were - signs it wouldn't look so strange. Monadic +/- is just a leading sign, or to put it another way, "+x" is the same as "0+x". |
|||||||||||||
|
|
The + after a just gets seen as a + before the next value. If you use consistent spacing it is the same as:
But not all the +s are necessary so it will act the same as doing:
The value of a is unchanged because you have never used the incrementing operator which is ++ with no white space between the two + symbols. + and ++ are two separate operators. |
|||||||||||||||||
|
|
Since the
so basically the final equation becomes of the sort
|
|||
|
|
|
The code seems to be equivalent to:
I.e. |
||||
|
|
|
x=+ +a+ + +a+ + +5 : This is equivalent to x = x=+ +a+ + +a+ + +5 or we can write it as x = + (+ a) + (+ (+ a)) + (+ (+ 5)) and the +'s are only indicating the signs which will be finally evaluated as x = a + a + 5. |
|||
|
|
#define +a+ a] ? – vard Apr 28 '12 at 7:41