Hi All, I'm a newcomer to C and I have a problem when trying to call a function which is declared under the current function Ex:
void test (){ test1 ();}
void test1(){ }
I could just move test1 above test, but I have this as well :
void test () {test1 ()}
void test4 () {test ()}
void test3 () {test4 ()}
void test1 () {test3 ()}
So do you see that If I moved test() I will have the same problem for test4 () ? What could I do ?
Thanks