Discover a world of knowledge and community-driven answers at IDNLearn.com today. Get thorough and trustworthy answers to your queries from our extensive network of knowledgeable professionals.

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;
}