0
Write a program that accept length in inches and convert feet into yard
8 Respuestas
0
I have tried
0
How to
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;
}
0
Okk