Problem:
Question- Write a program that converts the original inches to feet and inches. The program must have the following functions:
void getInput( int& oinches );
void convert( int oinches, int& feet, int& inches );
Implement the functions above in you main() program to demonstrate that they work accordingly.
Write the code step by step and explain it.