0

Write a program that accept length in inches and convert feet into yard

17th Jan 2019, 3:03 PM
shivanand sahu
shivanand sahu - avatar
4 odpowiedzi
0
I have tried
17th Jan 2019, 3:38 PM
shivanand sahu
shivanand sahu - avatar
0
How to
17th Jan 2019, 3:40 PM
shivanand sahu
shivanand sahu - avatar
0
#include<stdio.h> int main() { int feet,inches; printf("Enter the value of feet: "); scanf("%d",&feet); //converting into inches inches=feet*12; printf("Total inches will be: %d\n",inches); return 0; }
17th Jan 2019, 3:53 PM
shivanand sahu
shivanand sahu - avatar
0
Okk
20th Jan 2019, 5:47 PM
shivanand sahu
shivanand sahu - avatar