Question 546: In which stage the following code#include<stdio.h>gets replaced by the contents of the filestdio.h
tcs
wipro
infosys
general
aptitude
c-preprocessor
c-programming
The preprocessor replaces the line#include <stdio.h>with the system header file of that name. More precisely, the entire text of the file'stdio.h'replaces the#includedirective.