You need to recompile one of your stores procedures each time it runs. How can you achieve that?
B-Modify your stored procedure, and include the WITH RECOMPILE option in its definition.
C- Specify the WITH RECOMPILE option when you execute the stored procedure.
(Both options will cause the stored procedure to be recompiled each time it is executed. Option a. is incorrect because it will cause the stored procedure to be recompiled the next time it is run. Option d. is incorrect because only the statement with the RECOMPILE query hint will be recompiled.)