Course Content
Programming Language C
About Lesson
Nested if-else: when we use an if else statement into another if-else
syntax:
if(condition)
{
  if(condition)
  {

    ….

  }
  else
  {
     …
  }
}
else
  {
    …..

    if(condition)
    {
      …
    }
    else
    {
      …
    }

}