write a program to convert foot into inch
Answers
Answered by
0
Answer:
int main()
int feet,inches;
printf("Enter the value of feet: ");
scanf("%d",&feet);
//converting into inches.
inches=feet*12;
printf("\nTotal inches will be: %d\n",inches);
return 0;
Explanation:
I Hope U R Crystal Clear With Ur Question... So, Kindly Mark Me As BRAINLIEST If U Like To And Do Rate Me If U Like To...
Thank You!!!!!!
Answered by
0
Answer:
int main()
int feet,inches;
printf("Enter the value of feet: ");
scanf("%d",&feet);
//converting into inches.
inches=feet*12;
printf("\nTotal inches will be: %d\n",inches);
return 0;
Similar questions