12. Translate the following C program to Pep/9 assembly language. #include const int limit = 5; int...

Question:

12. Translate the following C program to Pep/9 assembly language.

#include

const int limit = 5;

int main() {

int number;

scanf("%d", &number);

while (number < limit) {

number++;

printf("%d ", number);

}

return 0;

}

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Computer Systems

ISBN: 9781284079630

5th Edition

Authors: J Stanley Warford

Question Posted: