Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The program has to be written in C programming Language. Question 1 Overview Write a program that calculates the Tribonacci number sequence but with different

The program has to be written in C programming Language.

image text in transcribed

Question 1 Overview Write a program that calculates the Tribonacci number sequence but with different sizes of integers and floats. Using unsigned shorts (16bit), unsigned ints (32bit), un numbers effeciently! Tribonnacci numbers are defined as a function tribonnaci(n) = tribonnaci(n-1) + tribonnaci(n-2) + tribonnaci(n-3), where tribonnaci(0) = 0 and tribonnaci(1) = 0 and tribonnaci(2) = 1 The tribonnacci sequence is defined here: https://oeis.org/A000073 The first few values of the sequence are: 0,0, 1, 1, 2, 4, 7, 13, 24, 44, 81, 149, 274,504, ... Example output The program will read from the terminal using scanf or fgets a number between 0 and 1023. Any other numbers or inputs are invalid input! Return 1 on invalid input. $ ./questioni Tribonacci! Type in a positive tribonacci input: -1 Invalid input! $ ./question1 Tribonacci! Type in a positive tribonacci input: Invalid input! $ ./question1 Tribonacci! Type in a positive tribonacci input: 10 16bit Tribonacci 81 32bit Tribonacci 81 64bit Tribonacci 81 Float Tribonacci 8.100000+01 Double Tribonacci 8.100000+01

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

Excel 2024 In 7 Days

Authors: Alan Dinkins

1st Edition

B0CJ3X98XK, 979-8861224000

More Books

Students also viewed these Databases questions