Question: Write a program to solve the following equation for any input of A, B, and C. A = input() B = input() C = input()
Write a program to solve the following equation for any input of A, B, and C. A = input() B = input() C = input() X = (A + 95) * ((B * 16) / C) A + 20 output(X) Rewrite the program in C and compile it as a 32-bit executable with the command: gcc -m32 mycode.c Run both your assembly version and C version to make sure the answers agree.
Disassemble the compiled C version with the following command:
objdump -d -Mintel a.out
Find the main function, and try to locate the assembly instructions corresponding to the math equation. How does your code compare to what the compiler did? Does your code and the compiler generated code differ at all? Describe. Please include screenshots, line numbers, and enough description
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
