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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started