Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i use PI in the objective-C ?? How to write coding if i want to do

(36.12*pi)/180 ?

share|improve this question
Please accept an answer if your problem has been solved. A higher accept rate will make it more likely people will take their time answering your questions. – Erik Dolor Jan 23 '12 at 19:16
@ErikDolor : Thanks for reminding me – Devang Jan 24 '12 at 2:20
No problem, thanks for accepting. Please check if you can accept more answers in your other questions to get your rate up. – Erik Dolor Jan 24 '12 at 2:30

2 Answers

up vote 16 down vote accepted

Use the constant M_PI. Your code would look like this:

(36.12 * M_PI)/180;
share|improve this answer

You can use the constant M_PI

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.