Which of the following cases makes a local variable be always stored in the stack frame of its function (as opposed to s
Posted: Thu Jul 14, 2022 2:18 pm
Which of the following cases makes a local variable be always stored in the stack frame of its function (as opposed to stored in a register)? a. When the \& (address) operator is applied to that variable. b. When the variable is declared as static. c. When the variable is a pointer. d. When the variable is declared as const.