I came across =+ as opposed to the standard += today in some C code; I'm not quite sure what's going on here. I also couldn't find it in the documentation.
|
|
In ancient versions of C, |
|||||||||||||||||||||
|
|
You can find evidence of the old notation in the 7th Edition UNIX Manual (Vol 2a) dated January 1979, available online at http://cm.bell-labs.com/7thEdMan/. The chapter is titled 'C Reference Manual' by Dennis M. Ritchie, and is in the PDF version of the manual, but not in the HTML version. In the relevant part, it says:
Separately, there is a paper 'Evolution of C' by L Rosler in the 'UNIX® SYSTEM: Readings and Applications, Volume II', originally published by AT&T as their Technical Journal for October 1984, later published in 1987 by Prentice-Hall (ISBN 0-13-939845-7). One section of that is: III. Managing Incompatible Changes
|
|||||||||
|
|
It's just assignment followed by unary plus.
Prints "5". Change |
|||||||||
|
|
It's an ancient defunct variant of '+='. In modern compilers, this is equivalent to an assignment operator followed by a unary '+'. |
|||||||||||||||
|
|
I think
should be equivalent to
and therefore be code of very bad style. I tried the following code and it printed "5":
|
|||||||
|
|
After reading your question I just investigated on these. Let me tell you what I have found. Tried it on gcc and turboc. Did not make it sure on Visual Studio as I have not installed it on my pC
I dont know about the other answers as they said its an ancient version of C.But the modern compilers treat them as a value to be assigned ( thats positive or negative nothing more than that) and these below code makes me more sure about it.
|
|||
|
|