example of shorthand operator.
Answers
Answered by
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
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
Math,
2 months ago
Accountancy,
2 months ago
Hindi,
6 months ago
English,
11 months ago
Science,
11 months ago