Ask your own question, for FREE!
Computer Science 19 Online
OpenStudy (anonymous):

help in increment and decrement operators in c language? example --a means?

OpenStudy (turingtest):

--a is the same as a-- except that in the prior the subtraction operation is carried out before other operators (logical comparisons, etc) a-- is the same as a-=1 is the same as a=a-1

OpenStudy (rsmith6559):

--a is a pre-decrement . a is decremented and then evaluated. a-- is post-decrement. a is evaluated and then decremented. I'll leave the increments (++) to you.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!