In which stage the following code
#include
gets replaced by the contents of the file stdio.h
Answer: D
The preprocessor replaces the line #include with the system header file of that name. More precisely, the entire text of the file 'stdio.h' replaces the #include directive.