A program that read a value n & display cosec inverse(n) in C.

#include<stdio.h>
#include<conio.h>
#include<math.h>

void main()
{
    float v,inverse;
    clrscr();
    printf("Enter any value = ");
    scanf("%f",&v);
    if(v<1)

        cout<<"Its Impossible; Please Enter number greater than 1.";
    else
    {
        inverse=asin(1.0/v)*180/M_PI;
        printf("\nCosec Inverse(%.2f) = %.2f",v,inverse);
    }
    getch();
}


///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........