Example:
void Nesto (int n)
{ 
  cout << n;
  if (n!=0) 
  { 
    Nesto(n-1);
    cout << n ;
  }
}        
      
      What is written if the call Nesto(0) is made?struct node ;
typedef node * ptrType ;
struct node
{
  int Item ;
  ptrType Next ;
} ;