Translate the following C program into Pep/9 assembly language. #include int minimum(int j1, int j2) { if (j1


Translate the following C program into Pep/9 assembly language.


#include


int minimum(int j1, int j2)


{


if (j1 <>


{


return j1;


}


else


{


return j2;


}


}


int main()


{


int n, m;


scanf("%d %d", &n, &m);


printf("Minimum: %d\n", minimum(n, m));


return 0;


}



Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here