Question: Use stdio.h And also add comments explaining your code 1 Distance Converter (20 points) Develop a C program that receives as input a distance value
1 Distance Converter (20 points) Develop a C program that receives as input a distance value d in inches and converts it to yards, feet, and inches (1 yard = 3 feet, 1 foot = 12 inches). Your program should: 1. Read the distance value d from the keyboard 2. Use a function called dist.conv to break distance to yards, feet, and inches. 3. Print the result in the main function (not within the dist.conv function) The dist.conv function prototype should be: void dist.conv(int d, int *p-y, int *pf, int *p.i) Sample Code Execution: Red text indicates information entered by the user Enter the distance in inches: 98 98 inches equal 2 yards, 2 feet, and 2 inches. 2 Array Statistics (20 points) Write a program that returns the min, max and average value of an array of integers nan ed data.ar. Your 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
