Question: Consider the following C program: /* a simple c program to average 3 integers */ main () { int avg; int i1 = 20; int
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.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
