retagged by
893 views
0 votes
0 votes
# of temporary variable required to create 3 address code in static single assignment form for the expression P+Q*R-S/(Q*R).
retagged by

1 Answer

2 votes
2 votes

Is it 4 ? 

Related questions

2 votes
2 votes
1 answer
1
1 votes
1 votes
5 answers
4
Sambhrant Maurya asked Oct 31, 2018
2,818 views
Consider the following code generation:a=b+c;c=a+x;d=b+c;b=a+x;The minimum no. of total variables required to convert the above code to static single assignment form is__...