Can anyone give solution of this question?

Write a c++ program that converts feet to inches. Take the feet as input and print the equivalent number of inches. Repeat this process until the user enters 0 as the feet.
I'll give you the hard bit implemented. You do the rest.

int inches = feet * 12;
Topic archived. No new replies allowed.