Consider the following C program: /* a simple C program to average 3 integers */ main (

Question:

Consider the following C program:
/* a simple C program to average 3 integers */
main ( )
{ int avg;
int i1 = 20;
int i2 = 13;
int i3 = 82;
avg = (i1 + i2 + i3)/3;
}
Write an NASM version of this program.
Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: