A
Aloo
Let's say I have a function
func()
{
............
func();
..........
}
I.e it is a recursive function. What happens if I declare it inline
func()
{
............
func();
..........
}
I.e it is a recursive function. What happens if I declare it inline