#include<iostream.h> #include<conio.h> #include<math.h> main() { clrscr(); int x; float value; cout<<\"\\n Enter the value of x = \"; cin>>x; value=sin(x); cout<<\" Sin (\"<<x<<\") = \"<<value<<endl; getch(); return 0; }