What is the output of the following code?
#include stdio.h

void main()
{
float a,b,M,A;
a=10;b=12;
M=a+b/5*4;
A=b-a/4*7;
printf("%f\n%f",M,A);


}

Posted on by