Home » C Programming » Operators » Question
  1. Which of the following is an invalid assignment operator?
    1. p /= 12;
    2. p |= 12;
    3. p %= 12;
    4. All of above
    5. None of these
Correct Option: E

p /= 12; or p |= 12; and p %= 12; all are valid assignment operator.



Your comments will be displayed only after manual approval.