Skip to content

Commit e81a069

Browse files
committed
camera ready changes
1 parent 3045a15 commit e81a069

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Ch06/06_02b/CodeDemo.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Complete Guide to C++ Programming Foundations
2-
// Exercise 06_04
3-
// Calling Functions, by Eduardo Corpeño
2+
// Exercise 06_02
3+
// Passing Values to a Function, by Eduardo Corpeño
44

55
#include <iostream>
66

@@ -14,5 +14,5 @@ int main(){
1414
std::cout << "a = " << a << ", b = " << b << std::endl;
1515

1616
std::cout << std::endl << std::endl;
17-
return (0);
17+
return 0;
1818
}

src/Ch06/06_02e/CodeDemo.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Complete Guide to C++ Programming Foundations
2-
// Exercise 06_04
3-
// Calling Functions, by Eduardo Corpeño
2+
// Exercise 06_02
3+
// Passing Values to a Function, by Eduardo Corpeño
44

55
#include <iostream>
66

0 commit comments

Comments
 (0)