Home » C Programming » C Preprocessor

Macro calls and function calls work exactly similarly.

Correct Answer: False

Explanation:

False, A macro just replaces each occurrence with the code assigned to it. e.g. SQUARE(3) with ((3)*(3)) in the program.


A function is compiled once and can be called from anywhere that has visibility to the funciton.


← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion