537 views
0 votes
0 votes
Write Quadruples,Triples, and indirect Triples for the expression
for (i=1 to n)
{
j=1;
while (j<=n)
{
A=B*C/D;
j=j+1;
}
}

Please log in or register to answer this question.

Related questions

2 votes
2 votes
1 answer
2
dragonball asked Jan 14, 2018
1,477 views
2 votes
2 votes
1 answer
3
ankitgupta.1729 asked Nov 12, 2017
970 views
Why do we use Three Address Code generally in intermediate Code Generation phase of compiler ?
2 votes
2 votes
1 answer
4
monanshi asked Dec 10, 2015
1,857 views
During code generation, we need to do register allocation (kind of machine dependent stuff). So, I think it must be the part of Synthesis phase?