Question
This code is Linux C Programming Part 1. Implement four versions of a function prt_triangle that takes a positive integer n as input argument and
This code is Linux C Programming
Part 1.
Implement four versions of a function prt_triangle that takes a positive integer n as input argument and prints a triangle of length n with asterisks (*): using a for loop in prt_triangle1, using a while loop in prt_triangle2, using a do-while loop in prt_triangle3, and using recursion in prt_triangle4. Your output for the included test code should be:
prt_triangle1(3) * * * * * * prt_triangle2(3) * * * * * * prt_triangle3(3) * * * * * * prt_triangle4(3) * * * * * *
Part 2.
Implement function guess_num that generates a random integer number between 0 and 100 and lets the user guess the number. The function performs three major steps. First, it generates a random integer number num using the rand function. Second, it prompts the message Enter your guess: and takes a number from the user as input. Third, it checks whether the number entered by the user is identical to num. If so, it displays the message Congrats! Your guess is correct and exits. If the entered number is larger than num, it displays the message Your guess is too large. Try again. and goes back to step 2. If the entered number is smaller than num, it displays the message Your guess is too small. Try again. and goes back to step 2.
You can use the command man rand to find more information on how to use the rand function. A sample execution of the function is as below:
Enter your guess: 27 Your guess is too small. Try again. Enter your guess: 45 Your guess is too large. Try again. Enter your guess: 32 Congrats! Your guess is correct.
Transcribed image textStep 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