Question: Can someone please help me write the C Code? Thanks. This is C, not C++ FloatCompare Description: Accepts two float numbers and compares them bitwise

Can someone please help me write the C Code? Thanks. This is C, not C++
FloatCompare Description: Accepts two float numbers and compares them bitwise based on floating point representations. This function will have to convert the given numbers into IEEE floating representation and then do bitwise comparison Preconditions: two input arguments are passed Postconditions: Returns 1, -1 or 0 based on the comparison 1 if number1>number2 -1 if number2>number1 0 if equal Calls: N/A Called by: main int bitwisedFloatCompare(float number1, float number2) {//Write the function to compare and return the corresponding value
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
