// FloatCompare // // Description:Accepts two float numbers and compares them bi
ID: 641766 • Letter: #
Question
// 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 FloatCompare(float number1,float number2) { // Write the function to compare and return the corresponding value }
//***********************************************************************************/ //
// printFloatRepresentation // //
Description: Prints the argument passed in floating point representation // Preconditions: // Postconditions: // // Calls: N/A // Called by: main // //***********************************************************************************/
void printFloatRepresentation(float number)
{ // Write a function that prints the floating point representation of a given number }