Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

3.1 Task 1: No return value and no parameters list Write a C program that has a function called print_hello that prints the message Hello.

image text in transcribed

3.1 Task 1: No return value and no parameters list Write a C program that has a function called print_hello that prints the message "Hello". Call the print_hello function four times from the main. 3.2 Task 2: Parameters list but no return value Write a C program that has a function called print_rectangle that takes two parameters length and width. The print_rectangle will print a rectangle with the given parameters on the screen using asterisks(*). Your program should ask the user to enter the length and width. Finally, your program will call the print_rectangle with the entered values of the length and width. 3.3 Task 3: Return value but no parameters list Write a C program that has two functions called get_double and average. The function get_double reads a double value from the user and returns it. The function average takes two parameters, the sum, and the number_of_values, and it returns the average based on those two parameters. Your program should use the get_double function and the average function to read N values and printing the average. 3.4 Task 4: Task 3: Return value but no parameters list Write a C program that has a function called is perfect_square. The is_perfect_square function has only one integer parameter, x. The function returns 1 (one) if x is a perfect square. Otherwise, it returns 0 (zero). Your program should use the is_perfect_square function, check if each of the numbers from 2 to 50 is a perfect square, print each of these numbers, and whether it is a perfect square or not

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David M. Kroenke

1st Edition

0130086509, 978-0130086501

More Books

Students also viewed these Databases questions

Question

Define the word odds.

Answered: 1 week ago

Question

What does Processing of an OLAP Cube accomplish?

Answered: 1 week ago