Homework Programming Language Processor Really Need Help Thank Question 4 3 Name Address R Q43828139
Homework from Programming Language Processor.. I really needhelp! thank you!
Question 4-3A name and an address are registered in a symbol table for ascalar variable. Consider information registered in a symbol tablefor an array, and modify a structure TableE in table.c of which asymbol table consists. Explain the modification in yourreport.var i, a[10]; % ./plod array.plo ; start compilation ; start execution begin i := 9; while i >= 0 do begin a[i] := i + i; i:- i – 1; end; i := 0; while i < 10 do begin write a[i]; writeln; i :- i + 1; end; end. Figure 8: array.plo Figure 9: The output of ar- ray.plo Question 4 Answer the following questions to introduce one-dimensional array to PL/0″. we assume that the first element of an array has index zero and that arrays are allocated over a stack. Show transcribed image text var i, a[10]; % ./plod array.plo ; start compilation ; start execution begin i := 9; while i >= 0 do begin a[i] := i + i; i:- i – 1; end; i := 0; while i
Expert Answer
Answer to Homework from Programming Language Processor.. I really need help! thank you!Question 4-3A name and an address are regis…
OR