Question: Try to write an inline assembly program that asks the user how many he wants to the program to loop. The program must print out
Try to write an inline assembly program that asks the user how many he wants to the program to loop. The program must print out "Hello World" with the current count [Example Hello World 0, Hello World 1 etc.].
Pseudo Code:
#include
#include
int main()
{
int i = 0;
printf("Please Enter the number of times you want the Program to loop:");
int d = 0;
scanf("%d", &d);
printf(" ");
asm(
);
return 0;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
