From c640d847343b3d50e7716173141d63bd1cca265c Mon Sep 17 00:00:00 2001 From: Oskar Date: Tue, 17 Sep 2024 11:25:31 +0200 Subject: small test --- functionpointertest.cpp | 52 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 functionpointertest.cpp (limited to 'functionpointertest.cpp') diff --git a/functionpointertest.cpp b/functionpointertest.cpp new file mode 100644 index 0000000..7bca9ec --- /dev/null +++ b/functionpointertest.cpp @@ -0,0 +1,52 @@ +#include +#include + +/* + * + * + * + * + */ + +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 fpfunction_as_argument(int(*calculate)(int, int), int a, int b) { + + return calculate(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::vector funcvec = {fpfp, fpfp1, fpfp2, fpfp3}; + for(auto a : funcvec) { + std::cout << a(10, 10) << std::endl; + } + + std::cout << std::endl; + std::cout << fpfunction_as_argument(multiplying, 10, 929) << std::endl; + return 0; +} -- cgit v1.2.3