We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3045a15 commit e81a069Copy full SHA for e81a069
src/Ch06/06_02b/CodeDemo.cpp
@@ -1,6 +1,6 @@
1
// Complete Guide to C++ Programming Foundations
2
-// Exercise 06_04
3
-// Calling Functions, by Eduardo Corpeño
+// Exercise 06_02
+// Passing Values to a Function, by Eduardo Corpeño
4
5
#include <iostream>
6
@@ -14,5 +14,5 @@ int main(){
14
std::cout << "a = " << a << ", b = " << b << std::endl;
15
16
std::cout << std::endl << std::endl;
17
- return (0);
+ return 0;
18
}
src/Ch06/06_02e/CodeDemo.cpp
0 commit comments