Compiler Design 2023

Testcase c42 of Assignment 3:
int main()
{
  if ( (a==1) || (b==2) && !(a==22) )
     a = a + 1;
  else
     return b + 2;
  return;
}

c42