Skip to main content
Search
Search This Blog
Welcome coders
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
February 09, 2022
13.(C) Printing the value of d if d=v*t
#include
<
stdio.h
>
int
main
(){
int
v
,
t
,
d
;
printf
("
Enter the value of v,t
");
scanf
("
%d%d
",&
v
,&
t
);
d
=
v
*
t
;
printf
("
The value of d is
%d
",
d
);
return
0
;
}
Comments
Popular Posts
February 15, 2022
29.(C)Pascal triangle --->>>Finding the sum of any row of pascal triangle
February 15, 2022
34.(C) Codeforces 791 A--->>>Bear and big brother
Comments
Post a Comment