On Wednesday 22 September 2004 17:24, [EMAIL PROTECTED] wrote: > int main (){ > WriteTreeSlave("paul",0); > } > --------------------------------------------------------------------------- >---------------------------------------------------------------------------- >-------------- It is my goal to call the function "WriteTreeSlave(?,?)" but > I don't know what variables I have to give along with this function (that's > why I placed the ?-mark there) . Ik have tried ("paul",0); but that doesn´t > work. Can anybody help me?
Would this even compile? For a very limited (one element) tree, you might have something like: Node PaulTree = { "paul", NULL, NULL }; WriteTreeSlave( &PaulTree, 0 );