function_pointers.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Fri, 05 Mar 2010 22:03:56 +0100
changeset 114 6f6850407ccf
parent 103 be3fe4a4f097
child 140 05d42a3737a4
permissions -rw-r--r--
buffer overflow in utf8 and ncurses demo the buffer for wctomb was too small committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * function_pointers.c
 */

#include <stdio.h>
#include <stdlib.h>

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

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

int func (int (*ptrFunc) (int, int), int a, int b)
{
    return ptrFunc (a, b);
}

int main (int argc, char **argv)
{
    printf ("Result: %d\n", func (&plus, 10, 20));
    printf ("Result: %d\n", func (&minus, 10, 20));

    return EXIT_SUCCESS;
}