Problem5: Solve the problem using C Programming(cosec inverse)
Channel:
Subscribers:
111
Published on ● Video Link: https://www.youtube.com/watch?v=MVY_HtAtGDI
This is the 5th video of this series.......
In this series we are talking about some problem and solving those using C program . In this particular video we have just solve a program that is related to inverse trigonometric function
My code
write a program that can read any value n and display cosec inverse n
int main()
{
float n,p;
printf("Enter any value for cosec inverse");
scanf("%f",&n);
p=(asin(1/n))*180/M_PI;
printf("cosec inverse %f=%.4f",n,p);
getch();
}
for sec inverse
p=acos(1/n)*180/M_PI
for cot inverse
p=atan(1/n)*180/M_PI
thanks to:
spark.adobe.com/sp/
also thanks to:
https://logomakr.com
Other Videos By Mridul's Classroom
Tags:
c programming
math library
trigonometric ratios
how to solve a problem of cosec inverse t
c programming trigonometric ratio
c programming cosec inverse
solve the problem with c
how to
inverse trigonometric functions
some problem of c programming
programming