summaryrefslogtreecommitdiff
path: root/6p49.cpp
diff options
context:
space:
mode:
Diffstat (limited to '6p49.cpp')
-rw-r--r--6p49.cpp14
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;
+}