Social Sciences, asked by subhamneupane06, 6 months ago

write a program to convert foot into inch​

Answers

Answered by Karthi2112
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 DixitaBulani
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