diff options
author | Oskar <[email protected]> | 2024-09-16 14:39:48 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-09-16 14:39:48 +0200 |
commit | df2ff7d92c25269d05a0bae75e0de8abd63a23d0 (patch) | |
tree | 8e1e518003680c768e5d9c531531b29f763da621 /6p49.cpp | |
parent | 8644ec6252d2ec44d8a549253049f3a0de2c9494 (diff) |
more
Diffstat (limited to '6p49.cpp')
-rw-r--r-- | 6p49.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/6p49.cpp b/6p49.cpp new file mode 100644 index 0000000..82582d1 --- /dev/null +++ b/6p49.cpp @@ -0,0 +1,14 @@ + +/* + * + * 6.49 + * + * + */ + +int main () { + + // What is a candidate function? A function with the same name as the function being called, could be one or more + // What is a viable function? It must have same number of parameters as arguments in the calling function, and the types must match or be convertible. + return 0; +} |