summaryrefslogtreecommitdiff
path: root/6p55.cpp
diff options
context:
space:
mode:
Diffstat (limited to '6p55.cpp')
-rw-r--r--6p55.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/6p55.cpp b/6p55.cpp
new file mode 100644
index 0000000..7f980e0
--- /dev/null
+++ b/6p55.cpp
@@ -0,0 +1,40 @@
+#include <iostream>
+#include <vector>
+
+/*
+ *
+ * 6.54
+ *
+ *
+ */
+
+int summing(int a, int b) {
+
+ return a + b;
+}
+
+int subtracting(int a, int b) {
+
+ return a - b;
+}
+
+int multiplying(int a, int b) {
+
+ return a * b;
+}
+
+int dividing(int a, int b) {
+
+ return a / b;
+}
+
+int main () {
+
+ int (*fpfp)(int, int) = summing;
+ int (*fpfp1)(int, int) = subtracting;
+ int (*fpfp2)(int, int) = multiplying;
+ int (*fpfp3)(int, int) = dividing;
+ std::cout << fpfp(1, 1) << std::endl;
+ std::vector<int(*)(int, int)> funcvec = {fpfp, fpfp1, fpfp2, fpfp3};
+ return 0;
+}