MIPS provides branching instructions like branch on equal, branch on not equal to register,branch on less than or equal to zero, branch on greater than or equal to zero and so on... all the branching instructions use only two operands and one conditions . What happens if we suddenly encounter multiple conditions in if statement.
So the question is how can one write a MIPS code for :
if( (a<b) & ( b>c ) || (c==d)) {
}
else
{
}
Please help with this kind of multiple conditions in if statement.