Answer the following questions based on the C code below, compiled to maximum optimisation:

1 point
Statement-4 returns the value stored in the address location
(py+4)(py+4)
True
False
1 point
Statement-3 stores 0 in the address pointed to by
(px+4)(px+4)
.
True
False
Answers
Answered by
0
Explanation:
The code optimization in the synthesis phase is a program transformation technique, which tries to improve the intermediate code by making it consume fewer resources (i.e. CPU, Memory) so that faster-running machine code will result. Compiler optimizing process should meet the following objectives :
The optimization must be correct, it must not, in any way, change the meaning of the program.
Optimization should increase the speed and performance of the program.
The compilation time must be kept reasonable.
The optimization process should not delay the overall compiling process.
Similar questions