main ne c++ main ik program likha hai jis ka result mujhe redians main milta hai kya kooi mujhe bata sakta hai ke iska result degrees main kaise lana hoga.
program hai


#include<iostream.h>
#include<conio.h>
#include<math.h>
void main()
{
clrscr();
float a,b,c,s,x,t;
cout<<"Enter value for a = ";
cin>>a;
s=sin(a);
cout<<"Sin of a = "<<s;
cout<<"\nEnter value for b = ";
cin>>b;
x=cos(b);
cout<<"Cos of b = "<<x;
cout<<"\nEnter value for c = ";
cin>>c;
t=tan(c);
cout<<"Tan of c = "<<t;
getch();
}

Anyways Thanx in advance.