blob: 7f58dc681d516e08fc92c2147b703b380489933a (
plain)
1
2
3
4
5
6
7
8
9
|
clc,clear
//Example 4.4
//To determine length of the arc intercepted
r=10 //radius of circle
theta=41*(%pi/180) //central angle in radian
s=r*theta //length of arc
printf('Length of arc intercepted = %.2f ft',s)
|