Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

write down a c program that finds the period (t) of a pendulum where(l) is the length (m) is the mass and g is 9.81

0 votes
asked Nov 16, 2019 by anonymous

the equation is t = √(m)(l)/2(g)

1 Answer

+1 vote
answered Nov 17, 2019 by Sanjana Garimella (160 points)
#include<stdio.h>

#include<math.h>

int main()

{

float t,m,l,g=9.81;

scanf("%f %f",&m,&l);

t=2*3.14*sqrt(l/g);

printf("%.2f",t);

return 0;

}

time period is t=2*3.14(pi)*sqrt(l/g)

what u have given in the question is wrong
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...