function_pointers.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 28 May 2009 16:51:26 +0200
changeset 95 d2a071bd1a60
parent 77 49e0babccb23
child 103 be3fe4a4f097
permissions -rw-r--r--
java disassembler jdisa disassembles a given java class file and shows the bytecode instructions. it does not currently output the same as javap -c <file>... committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * function_pointers.c
 * Copyright (C) 2008 Markus Broeker
 */

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

typedef struct T {
    int a;
    int b;
} T;

int plus (T t)
{
    return t.a + t.b;
}

int minus (T t)
{
    return t.a - t.b;
}

int func (T t, int (*ptrFunc) (T))
{
    return ptrFunc (t);
}

int main (int argc, char **argv)
{
    T t = {
        .a = 20,
        .b = 10
    };

    printf ("Result: %d\n", func (t, &plus));
    printf ("Result: %d\n", func (t, &minus));

    return EXIT_SUCCESS;
}