Question: The Program is to be Written Strictly in C , and must compile using https://www.onlinegdb.com/ Task 1: Arithmetic sequence An arithmetic sequence is a list

The Program is to be Written Strictly in C , and must compile using https://www.onlinegdb.com/
Task 1: Arithmetic sequence An arithmetic sequence is a list of numbers, , 2,,. where each number, d, from the previous one: is a fixed increase, The difference, d, is therefore: Given an initial value, , and either the difference, d, or second value, 2, the series can be uniquely described. For example, the sequence: 0,2, 4,6,.. is described by x1-0 and d-2. It could also be calculated given zi = 0 and x2 = 2 and the value of d calculated to be: d-2- 2. In more human language: an arithmetic sequence is counting in steps of d Task: Write a C program which takes two initial values, o and and generates further numbers in their arithmetic series Your program should follow the following rules: . It should print the initial values .It should print a total of 10 numbers . It should print each number on a new line . Numbers in the sequence can be positive or negative . Numbers in the sequence must be integers The initial values are to be "hard coded as variable initialisations. Do not read the from the console. Your program is only given the first two numbers, it needs to calculate everything else required to print the following 8 values. Check if your code works by comparing its output with a sequence calculated by hand. Test several combinations of r and r2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
