fork download
  1. /* My C program */
  2. #include <stdio.h>
  3. #include <math.h>
  4. int main(void)
  5. {
  6. float u=0.0;
  7. float v=0.0;
  8. float b=0.0;
  9. printf("Please enter value for u,v\n");
  10. scanf("%f",&u);
  11. printf("%f\n",u);
  12. scanf("%f",&v);
  13. printf("%f\n",v);
  14. b=sqrt(pow(sin(atan(u)),2)+cos(v));
  15. printf("Final result is b= %f",b);
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5284KB
stdin
10.05
0.35
stdout
Please enter value for u,v
10.050000
0.350000
Final result is b= 1.389089