Write a C function which receives two IEEE floating-point numbers and computes the multiplication of those numbers. You need to multiply the first two arguments say p and q represented as the bit representation of IEEE 754 single precision floating-point numbers. The function shall store the result of (p * q) in the memory location pointed to unsigned pointer by result.