Home » C Programming » Operators » Question
  1. Which of the following method is accepted for assignment?
    1. n1 = n2 = 15 = n3 = n4;
    2. 15 = n1 = n2 = n3 = n4;
    3. n1 = n2 = n3 = n4 = 15;
    4. All of above
    5. None of these
Correct Option: C

n1 = n2 = n3 = n4 = 15;



Your comments will be displayed only after manual approval.