Computer Science, asked by madhurcm79, 6 months ago

example of shorthand operator.​

Answers

Answered by s01956harini
2

Answer:Shorthand assignment operator combines one of the arithmetic or bitwise operators with assignment operator. For example, consider following C statements. int a = 5; a = a + 2; The above expression a = a + 2 is equivalent to a += 2

Explanation:

Answered by maheshatrijjr
3

Answer:

Shorthand assignment operator combines one of the arithmetic or bitwise operators with assignment operator. For example, consider following C statements. int a = 5; a = a + 2; The above expression a = a + 2 is equivalent to a += 2 .

Similar questions