if (x == 0)
{
  ...
}
else
{
  if (x != 0)                                                                  /*  "the condition is always true" */
  {   
    ...
  }           
  else
  {
    ;
  }
}
