Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 In which stage the following code
#include<stdio.h>
gets replaced by the contents of the file stdio.h ?->(Show Answer!)
1. In which stage the following code
#include<stdio.h>
gets replaced by the contents of the file stdio.h
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.00 pm
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 #include directive.