I need to convert my C code into assembly
here is my C code that needs to be converted into assembly(.asm)
int main()
{
//Variables that stores the numbers
int num1, num2, num3;
// Variable that stores the result
int result;
// Asking the user to input the value of num1
printf("Enter the first number:");
scanf("%d",&num1);
// Asking the user to input the value of num2
printf("Enter the second number:");
scanf("%d",&num2);
// Asking the user to input the value of num3
printf("Enter the third number: ");
scanf("%d",&num3);
//Performing the operation
result = num3 - (num1 + num2);
//Printing the result
printf("The value of result is: %d",result);
return 0;
}