Could someone please tell me if this is possible in C or C++?
void fun_a(); //int fun_b(); ... main(){ ... fun_a(); ... int fun_b(){ ...
It is not possible to declare a function within a function. You may, however, declare a function within a namespace or within a class in C++.