Home » C Programming » Decision Making » Question
  1. Which of the following is an invalid if-else statement?
    1. if ((char) ch){}
    2. if (ch){}
    3. if (func1 (ch)){}
    4. if (if (ch == 1)){}
    5. None of these
Correct Option: D

if (if (ch == 1)){}



Your comments will be displayed only after manual approval.