Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,037 questions

40,797 answers

573 users

How to return function pointer from a function in C

1 Answer

0 votes
#include <stdio.h>

enum Math
{
  ADD = '+',
  SUB = '-',
  MUL = '*',
};


int add(int a, int b)
{
    return a + b;
}

int sub(int a, int b)
{
    return a - b;
}

int mul(int a, int b)
{
    return a * b;
}

int (*function(enum Math mt))(int, int)
{
    switch (mt)
    {
        case ADD:
            return &add;
        case SUB:
            return &sub;        
        case MUL:
            return &mul;
        default:
            return NULL;
    }
}

int main(void)
{
    int (*fp)(int, int);

    fp = function(ADD);
    int a = 13, b = 5;
    int result = (*fp)(a, b);
    printf("%d + %d = %d\n", a, b, result);
    
    
    fp = function(MUL);
    result = (*fp)(a, b);
    printf("%d * %d = %d\n", a, b, result);
    
    return 0;
}

    
/*
run:

13 + 5 = 18
13 * 5 = 65
   
*/

 





answered Aug 14, 2017 by avibootz
...