Programming in C
Programming in C
4th Edition
ISBN: 9780321776419
Author: Stephen G. Kochan
Publisher: Addison-Wesley
bartleby

Concept explainers

bartleby

Videos

Textbook Question
Book Icon
Chapter 4, Problem 1E

Type in and run the nine programs presented in this chapter. Compare the output produced by each program with the output presented after each program in the text.

Expert Solution & Answer
Check Mark
Program Plan Intro

“for” condition:

The “for” condition is used to repeat the particular block until some end condition is met.

Syntax:

for (init; condition; increment)

{

//statement

}

Here, “init” is allow the user to declare and initialize any loop control variables. The “condition” is evaluated and “increment” is used to increment the values of the variable.

Explanation of Solution

Program:

Consider the five programs presented in the given chapter.

Program 4.1:

The following program will calculate the eighth triangular number:

//include the header file

#include <stdio.h>

//definition of main method

int main (void)

{

/*declare a variable*/

int triangularNumber;

//calculate the "triangularNumber"

triangularNumber = 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8;

//display the result

printf ("The eighth triangular number is %i\n", triangularNumber);

//return statement

return 0;

}

Explanation:

In the above program, declare the variable and calculate the eighth triangular number. Then display the values using “printf” function on the output screen.

Sample Output

Sample Output for program 4.1:

The eighth triangular number is 36

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
please code in python question in image
Problem B  Musical Key ConversionThe chromatic scale is a 12-note scale in music in which all notes are evenly spaced: that is, the ratio of the frequency between any two consecutive notes is constant. The notes are typically labeled in the following sequence: A, A#, B, C, C#, D, D#, E, F, F#, G, G# After G#, the labels loop back and start over with A (one octave higher). To convert between musical keys, you can shift all notes in a piece of music a constant number of steps along the scale above. For example, the sequence of notes E, E, F, G, G, F, E, D, C, C, D, E, E, D, D can be converted to another musical key by shifting everything up three steps: E, E, F, G, G, F, E, D, C, C, D, E, E, D, D G, G, G#, A#, A#, G#, G, F, D#, D#, F, G, G, F, F Notice that G was converted to A#, since going three steps up required us to loop off of the top of the scale back to the bottom: G -> G# -> A -> A#. Technically we should note that this would be A# of the next octave up, but we’ll…
11. Given the coefficients of a 1st degree linear function, please draw its graph. Use macros or procedures to separate the code.
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Computational Software for Intelligent System Design; Author: Cadence Design Systems;https://www.youtube.com/watch?v=dLXZ6bM--j0;License: Standard Youtube License