How does compiler calculate which function should be inline since inline request is not obligatory? What kind of functions should I make inline?
Extra question. Can I make an inline call?
void func{} // normal (not-inline) function
int main()
{
func(); // normal call
// inline func(); // inline call
return 0;
}