Answer:
The solution code is written in C++
Explanation:
Firstly, create a function PrintFeetInchShort that takes two integers, numFeet and numInches (Line 5). Display the numFeet followed by a single quote, '. To print the single quote, we can use the escape sequence, \'. (Line 6)
After the single quote, it is followed with numInches and then a double quote ". The double quote is printed using another escape sequence , \".
Finally print the new line, "\n"