I know that inline functions are used so that we can be rid of function calls.
I see that using inline function is a good way of using the storage and keeping the stack more empty.
Is it a good programming practice to use inline functions everywhere.
I think so, because since compilers are not obligated to use inline functions as inline when the functions are complex, so would it be a nice approach to append that little word inline
to every functions?