Find Speed : C Program Find Speed : C Program #include<stdio.h> #include<conio.h> void main() { float s,d,t ; printf("Enter Values Of d\n"); scanf("%f",&d); printf("Enter Value Of S\n"); scanf("%f",&s); t=d/s; printf("Time is %f",t); getch(); }
0 comments:
Post a Comment