c++ Binary tree conflicting types error

121 Views Asked by At

Q:Could someone give a hint, why inside my program here are conflicting types, even if its the same?

2

There are 2 best solutions below

1
On BEST ANSWER

If you call a function before it is defined (i.e. earlier in the file than the definition), the compiler won't know the argument types and return type. You need to have a function prototype before the function is called. Usually people put function prototypes in header files, but you could just add one near the top of your file.

0
On

You missed a '}' before the definition of a balance_tree. like that:

    exit(-1)
}
}      /* this one */

treeNode* balance_tree(treeNode* currentNode) {