Question: Need help programing this problem in C. skip counting count up using a designated interval The program should read three integer input values. The first,
Need help programing this problem in C. 
skip counting count up using a designated interval The program should read three integer input values. The first, which we'll refer to as n, is a integer from which the program will start counting. The second, which we'll refer to as k, is the "skip" increment. The third, which we'll refer to as end, is the ending integer where the program will stop counting The program should print a single line of output with all of the integers starting at n, increasing by increments of k, and ending at end (inclusive). As a special case, if the increment k would skip over end without hitting it exactly, then the last number printed will be less than end. You can assume that n s end and k2 1 d by at least one space character 3 11 19 27 35 43 Another example: if the inputs are 3 8 42, then the output should be 3 11 19 27 35 Hints Consider using a for loop
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
