gillianhopeg gillianhopeg 11-10-2022 Computers and Technology contestada 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; }