diff options
author | Oskar <[email protected]> | 2024-09-06 10:33:29 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-09-06 10:33:29 +0200 |
commit | 60789ab73d4987068114b0342e71a63f81f65c68 (patch) | |
tree | 2e62dc062e9db9a704c0cf69824259e4599119b0 /6p13.cpp | |
parent | 689b333897de2197e5d6f65c4e7de62cf68334ff (diff) |
more
Diffstat (limited to '6p13.cpp')
-rw-r--r-- | 6p13.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/6p13.cpp b/6p13.cpp new file mode 100644 index 0000000..e6cc1e7 --- /dev/null +++ b/6p13.cpp @@ -0,0 +1,16 @@ + +/* + * + * 6.13 + * + * + */ + +int main () { + + //void f(T): It means that the variable is copied from the arguments passed to the function + //void f(T&): It means that the variable is a reference to the variable passed to the function. + // So basically, when we use the variable in the function it is directly a reference to the variable + // that we passed so that variable is changed rather than a copy + return 0; +} |