Home » C Programming » Structures » Question
  1. Which of the following is not possible under any scenario?
    1. n1 = n2;
    2. (*n1).number = 10;
    3. n1 = &n2;
    4. All of above
    5. None of these
Correct Option: E

n1 = n2; or (*n1).number = 10; and n1 = &n2; are not possible under any scenario.



Your comments will be displayed only after manual approval.