Computer Science, asked by uzmajutt280, 6 months ago

If A < B and C < D then If B=C and C=A then t = 1 else t = 0 else t=2 For given string solve following statements: 2.1- Generate Three-Address code

Answers

Answered by sharanya200636
0

Explanation:

if (A <B && C <D)

t=1;

else if (B=C && C=A)

t=0;

else

t=2;

HOPE IT HELPS

PLS MARK AS BRAINLIEST

Similar questions