100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
COS132 Chapter 2 summary $5.36   Add to cart

Summary

COS132 Chapter 2 summary

 21 views  0 purchase
  • Course
  • Institution
  • Book

Summary study book Starting Out with C++ of Tony Gaddis - ISBN: 9780132926867 (Detailed summary)

Preview 2 out of 11  pages

  • Yes
  • April 20, 2022
  • 11
  • 2021/2022
  • Summary
avatar-seller
COS 132 Chapter 2



COS 132
CHAPTER 2 – INTRO TO C++
UNTI 2.1- THE PARTS OF A C++ PROGRAM




Line 2 #include <iostream>

Because this line starts w #, it is called a preprocessor directive. The preprocessor directive reads your program before it
is compiled and only executes those lines beginning w the symbol.

The #include directive causes the preprocessor to include the contents of another file (header file) in the program. It is
called the header file bc it should be included in the head of the program. <iostream> is the name of the header file that
is to be included.

Line 3 using namespace std;

This statement declares that the program will be accessing entities whose names are part of the namespace called std.

Line 5 int main()

This marks the beginning of a function, a function can be thought of as a group of one or more programming statements
that collectively has a name.

Line 7 cout << “Programming is great fun!”;

The group of characters inside the quotation marks is called a string lateral or string constant.

Line 8 return 0;




1|P a g e

, COS 132 Chapter 2

This sends the in value 0 back to the operating system upon the programs completion, the value indicates that a
program executed successfully.




UNIT 2.2 – THE COUT OBJECT

This is the simplest type of screen output that a program can display – console output which is just plain text.

Cout is classified as a stream object, which means it works w streams of data. To print a message on the screen, you
send a stream of characters to cout. When << operator is used in this way, it is called the stream insertion operator.
Think of it as an arrow that must point towards cout.

There are two ways to instruct cout to start a new line.

1. Send cout a stream manipulator called endl
- cout << “text” << endl;
2. Insert an escape sequence in the string itself, this starts w “\” and is follows by a control character
- cout << “text\n”;
- When using escape sequences, do not put a space between the backslash and the control character.




2|P a g e

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller jennamortonx. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $5.36. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

76462 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$5.36
  • (0)
  Add to cart