What will be the value returned by the following function, when it is called with a value 11?
recur(int num() {
  if((2) != 0 )
    return(recur(2) * 10+num% %2)
  else
    return 1;
}

Posted on by