Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 54504c1

Browse files
Update readme and makefile.
1 parent 78d2261 commit 54504c1

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

‎003-std-cout-cin/README.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
- [6] (∗1) Read in a bool, a char, an int, a double, and a string.
55

66
```bash
7-
# Run make to build main1, main2, main3
7+
# Run make to build the 3 separate executables
88
make
99

10-
# run each by doing the following
11-
./main1
12-
./main2
13-
./main3
10+
# run each executable by running the following commands
11+
./01-cout
12+
./02-cin-bool
13+
./03-cin-string
1414

1515
make clean
1616
```

‎003-std-cout-cin/makefile‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
main: main1 main2 main3
1+
main: 01-cout 02-cin-bool 03-cin-string
22

3-
main1:
4-
clang++ 01-cout.cpp -o main1
3+
01-cout: 01-cout.cpp
4+
clang++ 01-cout.cpp -o 01-cout
55

6-
main2:
7-
clang++ 02-cin-bool.cpp -o main2
6+
02-cin-bool: 02-cin-bool.cpp
7+
clang++ 02-cin-bool.cpp -o 02-cin-bool
88

9-
main3:
10-
clang++ 03-cin-string.cpp -o main3
9+
03-cin-string: 03-cin-string.cpp
10+
clang++ 03-cin-string.cpp -o 03-cin-string
1111

1212
clean:
13-
rm -f main1 main2 main3
13+
rm -f 01-cout 02-cin-bool 03-cin-string

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /