Question: Consider the following C program: /* a simple C program to average 3 integers */ main ( ) { int avg; int i1 = 20;

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

3.44 Rating (179 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

avg resd 1 integer average i1 dd 20 first num... View full answer

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

Document Format (1 attachment)

Word file Icon

896-C-S-S-A-D (2703).docx

120 KBs Word File

Students Have Also Explored These Related Systems Analysis And Design Questions!