Question: 16. What will be printed to the screen given the following lines of code: #include int main() { float recip, a = 7, b =
16. What will be printed to the screen given the following lines of code:
#include
int main()
{
float recip, a = 7, b = 11;
recip = 1/(a+b);
printf(" %07.4f ",recip);
return 0;
}
a) 00.0556
b) 0.055556
c) 0.0556
d) %07.4f
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
