Computer Science, asked by Keshavshahi, 5 months ago

when the operator ++ is placed after the variable name the first assignment of the value of the variable takes place and then the variable is incremented, this operation is called what ​

Answers

Answered by Rishigaming
0

Answer:

In C, ++ and -- operators are called incrementand decrement operators. They are unary operators needing only one operand. Hence ++as well as -- operator can appear before or after the operand with same effect. That means both i++ and ++i will be equivalent. i=5; i++; printf("%d",i);

Similar questions