Home » C Programming » Operators » Question
  1. Operation “n = n * m + n” can also be written as ___________.
    1. (p = n * m)!=(n = p + m);
    2. n = (m + 1)* n;
    3. n *= m + 1;
    4. All of above
    5. None of these
Correct Option: D

Operation “n = n * m + n” can also be written as "(p = n * m)!=(n = p + m);" or n = (m + 1)* n; and n *= m + 1;



Your comments will be displayed only after manual approval.