Home » C Programming » Decision Making » Question
  1. The C statement “”if (p == 3 || q == 4) {}”” can be re-written as ___________.
    1. if (p == 3){}
      if (q == 4){}
    2. if (p == 3){}
      else if (q == 4){}
    3. if (p == 3)
      if (q == 4){}
    4. All of above
    5. None of these
Correct Option: E

None of these



Your comments will be displayed only after manual approval.