reshown by
1,683 views
0 votes
0 votes
Consider a program segment

 

sum: = 0

for( i=1; i<=20;  i++)

sum: = sum + a[i] + b[i] ;

 

a )And generate three Address code for it

b) And create basic block for that three address Code.

Consider that there are 4 bytes per word ?
reshown by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
LavTheRawkstar asked Jun 26, 2016
333 views
For a given code generate output for every phase of compiler .{Int i = 1;Int a[10];While (i <= 10){a[i] = 0;i = i+1;} }
0 votes
0 votes
2 answers
3
Ebrahim asked Dec 16, 2023
196 views
Q5. Find the FIRST and FOLLOW of the grammar to check whether it is LL (1) parser or not. N → AB | BA A → a | CAC B → b | CBC C → a | b