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
Solve the part b in accordance with the program given make whatever changes or omissions are required paste the screenshot of program and output
open file in python write in it list of months of the year from jan to dec and list of enter sales for each month  then calculate the total and average and the min and max numbe and write list of sales to the file
Write the programme

Additional Engineering Textbook Solutions

Find more solutions based on key concepts
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
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