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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,884 questions

51,810 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
...