Connoisseurs C ++
I know that in C ++ the function call is possible only after its actual declaration. But what if this situation:
There are 2 functions, one can recursively activate the other.
double Meth1() { {...} if (...) return Meth1(); else return (Meth2()); } double Meth2() { {...} if (...) return Meth2(); else return (Meth1()); } The compiler curses the Meth2 () call in the Meth1 function, since it is not actually declared. How can you clearly indicate such a case?
return? - AnT