math library

  • C

C Program To Convert Polar To Cartesian Co-ordinates

Write a C program to receive Polar co-ordinates(r, θ) and convert them into Cartesian co-ordinates(x, y). Ask the user to…

5 years ago
  • C

C Program To Convert Cartesian To Polar Co-ordinates

Write a C program to receive Cartesian co-ordinates(x, y) of a point and convert them into Polar co-ordinates(r, θ). Related…

5 years ago
  • C

Print All Trigonometric Ratios: C Program

If value of an angle is input through the keyboard, write a c program to print all its Trigonometric Ratios.…

5 years ago
  • C

Calculate Area of a Circle using math.h library: C

We can calculate area of circle if we know the value of its radius. So using that, we shall write…

5 years ago