Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Write a program to access the function "foo" using the structure structure2.

typedef struct
{
   int *a;
   char (*fptr)(char*);
}structure1;

typedef struct
{
   int x;
   structure1 *ptr;
}structure2;

char foo(char * c)
{
---
---
---
}
share|improve this question
Is this homework? – Greg Hewgill Nov 12 '09 at 9:48

2 Answers

up vote 1 down vote accepted
structure2 *s2 = (structure2*)malloc(sizeof(structure2));
s2->ptr = (structure1*)malloc(sizeof(structure1));
s2->ptr->fptr = foo;
char x = 'a';
s2->ptr->fptr(&x);
share|improve this answer
Oops.. fixed :) – Amarghosh Nov 12 '09 at 10:15
  • Create an object of type structure2
  • Assign to it the address of an object of type structure1 (this can be done in quite a few ways)
  • Assign foo to the above allocated structure1 object's fptr member
  • Call foo using:

    structure2 s2;
    // allocate 
    char c = 42;
    s2.ptr->fptr(&c);  // if this
    

Example:

typedef struct
{
   int *a;
   char (*fptr)(char*);
}structure1;

typedef struct
{
   int x;
   structure1 *ptr;
}structure2;

char foo(char * c)
{
return 'c';
}

int main()
{
 structure1 s1;
 structure2 s2;
 s1.fptr = foo;
 s2.ptr = &s1; 
 char c = 'c';
 printf("%c\n", s2.ptr->fptr(&c));
return 0;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.