Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does =+ mean in C?

Tags:

c

operators

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.

like image 460
mugetsu Avatar asked Sep 27 '11 18:09

mugetsu


1 Answers

In ancient versions of C, =+ was equivalent to +=. Remnants of it have been found alongside the earliest dinosaur bones.

For example, B introduced generalized assignment operators, using x+=y to add y to x. The notation came from Algol 68 via McIlroy, who incorporated it in his version of TMG. (In B and early C, the operator was spelled =+ instead of +=; this mistake, repaired in 1976, was induced by a seductively easy way of handling the first form in B's lexical analyzer.)

[The Development of the C Language, Dennis Ritchie. Copyright ACM, 1993. Internal citations omitted.]

Since the mid-1970's, it has no special meaning -- it's just a = followed by a +.

like image 170
Jerry Coffin Avatar answered Oct 12 '22 22:10

Jerry Coffin