Can I call a function below the function? because I get an error of implicit declaration of function
Like in example below I have function() below functionpp() but in functionpp() I called function().
I have a code where I need to call each functions.
i.e.
function()
{
functionpp();
//some code
}
functionpp()
{
//some code
function();
}