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

51,890 answers

573 users

How to use function pointer in struct to calculate factorial with C

2 Answers

0 votes
#include <stdio.h>

typedef struct {
    int n;
    int (*funcPtr)(int);
} functionPointer;

int factorial(int num) {
    if (num == 0 || num == 1)
        return 1;
    else
        return num * factorial(num - 1);
}

int main()
{
    functionPointer fp;

    fp = (functionPointer) { .n = 5, .funcPtr = &factorial };
    
    printf("Factorial of %d = %d\n", fp.n, fp.funcPtr(fp.n));

    return 0;
}



/*
run:

Factorial of 5 = 120

*/

 



answered Jan 15, 2023 by avibootz
0 votes
#include <stdio.h>

typedef struct {
    int n;
    int (*funcPtr)(int);
} functionPointer;

int factorial(int num) {
    if (num == 0 || num == 1)
        return 1;
    else
        return num * factorial(num - 1);
}

int main()
{
    functionPointer fp = { .n = 6, .funcPtr = &factorial };
        
    printf("Factorial of %d = %d\n", fp.n, fp.funcPtr(fp.n));

    return 0;
}



/*
run:

Factorial of 6 = 720

*/

 



answered Jan 15, 2023 by avibootz

Related questions

1 answer 144 views
144 views asked May 16, 2022 by avibootz
2 answers 159 views
159 views asked Aug 13, 2017 by avibootz
3 answers 244 views
1 answer 116 views
116 views asked May 24, 2018 by avibootz
1 answer 183 views
1 answer 157 views
157 views asked Mar 7, 2020 by avibootz
1 answer 110 views
...