three addres code generate in c language
Answers
Answered by
0
Answer:
EXAMPLE 6.3 Generate the three-address code for the following C program: main() { int i = 1; int a[10]; while(i <= 10) a[i] = ; } The three-address code for the above C program is: i = 1 1. if i <= 10 goto(4) 2. goto(8) 3. t 1 = i * width 4.
Explanation:
hope this will help u pls mark me as the brainliest
Similar questions