Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

X.3 A Tour of C++: The Basics

  • [5] (∗1) Write out a bool, a char, an int, a double, and a string.
  • [6] (∗1) Read in a bool, a char, an int, a double, and a string.
# Run make to build the 3 separate executables
make

# run each executable by running the following commands
./01-cout
./02-cin-bool
./03-cin-string

make clean