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,851 questions

51,772 answers

573 users

How to pass a pointer to function to another function as parameter in C

1 Answer

0 votes
#include <stdio.h>
 
int (*functionPointer)(int, int);
int sum_function(int a, int b);
int sum_function_pointer(int (*functionPtr)(int, int));

int main(void)
{
    functionPointer = sum_function;
    
    int s = sum_function_pointer(functionPointer);
    printf("%d", s);
    
    return 0;
}

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

int sum_function_pointer(int (*functionPtr)(int, int)) 
{
    return (*functionPtr)(7, 3);
}

/*
run:
 
10

*/

 



answered Nov 25, 2015 by avibootz

Related questions

1 answer 220 views
1 answer 170 views
170 views asked Feb 1, 2020 by avibootz
2 answers 127 views
1 answer 127 views
127 views asked Nov 27, 2021 by avibootz
2 answers 171 views
...