Question: Incorrect Question 8 0/2 pts Consider the following C code in which M and N are constants declared with #define. int arri(M) (N); int arr2[N]

Incorrect Question 8 0/2 pts Consider the following C code in which M and N are constants declared with #define. int arri(M) (N); int arr2[N] [M]; void scale(int i, int j, int s) { arri[i][j] *=S; arr2[j][i] * S; The following is the translation of scale's function body to x86 instructions: leaq adda movi imull movl (%rdi,%rdi,8), %rax %rsi, %rax %edx, %ecx arr1(%rax,4), %ecx %ecx, arr1(%rax,4) (%rsi,%rsi,4), %rax %rax, %rdi arr2(%rdi,4), %edx %edx, arr2(%rdi,4) leag adda imull movl What are the values of Mand N? M = 5* 36i+4j N = 20j +4i *s Incorrect Question 8 0/2 pts Consider the following C code in which M and N are constants declared with #define. int arri(M) (N); int arr2[N] [M]; void scale(int i, int j, int s) { arri[i][j] *=S; arr2[j][i] * S; The following is the translation of scale's function body to x86 instructions: leaq adda movi imull movl (%rdi,%rdi,8), %rax %rsi, %rax %edx, %ecx arr1(%rax,4), %ecx %ecx, arr1(%rax,4) (%rsi,%rsi,4), %rax %rax, %rdi arr2(%rdi,4), %edx %edx, arr2(%rdi,4) leag adda imull movl What are the values of Mand N? M = 5* 36i+4j N = 20j +4i *s
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
