in Compiler Design retagged by
882 views
2 votes
2 votes
How to represent a=b[i]+c[j] in quadruple?
in Compiler Design retagged by
882 views

1 Answer

0 votes
0 votes

Simple. The quadruples are

(arr_index, b, i, t0), (arr_index, c, j, t1), (add, t0, t1, a)

Related questions

1 vote
1 vote
0 answers
1