Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please program in C The purpose of this lab is to learn creation and usage of functions in C Turn In Upload your Lab 3
Please program in C
The purpose of this lab is to learn creation and usage of functions in C Turn In Upload your Lab 3 program to the Dropbox for Lab 3 on Pilot. Be sure your program is well documented. Write a program to calculate the sum of squares of two numbers 5 times as follows create function float sum of squares(int a, int b) that calculates a +b Include the function prototype before main(void). In your main function, use a for loop or a while loop to repeat computation of sum of squares 5 times, each time with a different pair of numbers Inside the for/while loop, ask the user for a and b Then, call sum of Squares and pass parameters a and b to it Perform the required calculation in sum of squares(int a, int b) Return the result to the main program and save it in a variable. Print the value saved in the variable, and if this has been done 5 times already, exit the main function; otherwise, repeat reading two numbers, finding their sum of squares, and printing the result. Note: You may change the names of the function and its parameters. If you are using math functions in your calculations, make sure to include math.h before entering main An example interaction with your program is given belowStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started