this questions may be vague, but how many functions can you open up through function calls without ending the function. and example would be...
int FunctionOne();
int FunctionTwo();
int FunctionThree();
int FunctionFour();
int FunctionFive();
int main()
{
FunctionOne();
return 0;
}
int FunctionOne()
{
FunctionTwo;
return 0;
}
int FunctionTwo()
{
FunctionThree;
return 0;
} //ect...
what i am asking is how many times should you be able to do this before the program does not run the next function.
*using visual C++ 2008 EE
*i have the same problem but my real code is 12 pages long if printed and has 5 functions runnning