Multiple choice Which of the following is/are the limitation(s) of inline function in C++? Inline function cannot be used with small functions. Inline function cannot be used in place of macros. Inline function is not applicable for the complicated function. Both (2) and (3) All of the above Reveal answer Fill a bubble to check yourself C Correct answer Explanation This statement is true. In that case, the whole body of the function is placed when the function call is made every time in the program, so if the function is large it will affect the speed and memory of the program.