Question 7: Please complete the program as the set output *can be answered 2 times*
#include <$1>
#include <stdlib.h>
$2 f(float);
int main(int argc, char *argv[]) {
int a;
a = f(3.1415);
return 0;
}
float f(float bb)
{
$3("%f", bb);
return $4;
}
Output
3.141500