Question: need help the Assembly code to find minimum value in an array of float values. i have this so far but the output is 2
need help the Assembly code to find minimum value in an array of float values. i have this so far but the output is instead of for min value, please help me modify this, my test code: #include
using namespace std;
extern C
float floatMinfloat int;;
int main
declare an array of floats to pass into assembly functions
const int SIZE ;
float floatArrSIZE;
display the array content
printfThe array contains the float numbers: ;
for int i ; i SIZE; i
printff floatArri;
call assembly function to compute minimum
float min floatMinfloatArr SIZE;
printfThe smallest float is: f
min;
return ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
