Computer Science, asked by TbiaSamishta, 1 year ago

Convert the following code into three address code. Identify the leaders and draw Control Flow Graph. for (i=1;i<=n;i++) for (j=1;j<=m;j++) c[i][j]=0; for (k=1;k<=m;k++) c[i][j]=c[i][j]+a[i][k] * b[k][j];

Answers

Answered by Arslankincsem
0

Explanation:

While you are learning and understanding the concepts of computer science, you come across for-loop that is a control flow statement. There are various algorithms, which you can easily understand and solve out with the concentration and basic knowledge of the concept and the formulaes that you need to identify at the right place while you are working on it.

Similar questions