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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!