Write a c program to evaluate the each of following equation v=u+at
Answers
Answered by
1
Answer:
I hope it is useful ok bye
Attachments:
Answered by
0
Answer: #include<stdio.h>
void main()
{
float V,u,a,t;
printf("u=");
scanf("%f",&u);
printf("a=");
scanf("%f",&a);
printf("t=");
scanf("%f",&t);
V=u+a*t;
printf("V=u+at");
printf("\nV=%f",V);
}
Explanation:
Similar questions