Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a program to get the value of sin (x) using a library
function , when x is given in degrees.



Write a program to get the value of sin (x) using a library function , when x is given in degrees...

Answer / subrat

#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
float x,value;
printf("\n Enter a degree to get its Sin(x)
value=");
scanf("%f",&x);
clrscr();
value=sin(x);
printf("\n Value of Sin(x)=%f",value);
getch();
}

Is This Answer Correct ?    16 Yes 7 No

Post New Answer

More C++ General Interview Questions

What is an html tag?

0 Answers  


Which programming language is best to learn first?

0 Answers  


What is the role of C++ shorthand's?

0 Answers   TCS,


What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0

0 Answers  


What is virtual methods?

0 Answers  


what is difference between internet and Internet?

12 Answers   College School Exams Tests, Microsoft, MIT, TCS,


How a pointer differs from a reference?

0 Answers  


What is the use of volatile keyword in c++? Give an example.

1 Answers  


Write some differences between an external iterator and an internal iterator?

0 Answers  


Show the declaration for a pointer to function returning long and taking an integer parameter.

0 Answers  


Is c++ double?

0 Answers  


Which programming language's unsatisfactory performance led to the discovery of c++?

0 Answers  


Categories