In C language, compound operator contains _____ operator and assignment operator.
In C language, compound operator contains _____ operator and assignment operator.
سی زبان میں ، کمپاؤنڈ آپریٹر میں _____ آپریٹر اور اسائنمنٹ آپریٹر ہوتا ہے۔
Explanation
In C language, a compound operator combines an arithmetic operator with an assignment operator, e.g., +=, -=, *=, /=.
These are used to simplify expressions, like x += 5 means x = x + 5.