hi
it is possible to call finction with in structure in 'C' language
like
[code=c]
struct parent
{
int id;
void mark();
}s;
mark()
{
int m1,m2
}
[/code]