Discover answers to your most pressing questions at Westonci.ca, the ultimate Q&A platform that connects you with expert solutions. Get quick and reliable solutions to your questions from a community of seasoned experts on our user-friendly platform. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.

Translate the following ā€˜Cā€™ program into assembly language and run on PEP-9 simulator.
Show all test cases:

int main()
{
int number;
scanf("%d", &number);
if (number % 2 == 0)
{
printf("Even\n");
}
else
{
printf("Odd\n");
}
return 0;
}