diff options
Diffstat (limited to '8p14.cpp')
-rw-r--r-- | 8p14.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/8p14.cpp b/8p14.cpp new file mode 100644 index 0000000..1fc3c1e --- /dev/null +++ b/8p14.cpp @@ -0,0 +1,21 @@ + +/* + * + * 8.14 + * + * + */ + +int main () { + + /* + + They are references because the vectors could be very + large and passing a reference means it does not have to + be copied. + + Const is because the data only needs to be read. + + */ + return 0; +} |