InterviewSolution
| 1. |
What Is The Difference Between #include And #include "file" ? |
|
Answer» We use # include to include a file. The difference between two ways of file inclusion lies in the order in which preprocessor searches for the file specified. When the preprocessor ENCOUNTERS #include statement, it looks for the file specified in the angled brackets in the default location (PATH defined in INCLUDE environment variable of the system). We use # include to include a file. The difference between two ways of file inclusion lies in the order in which preprocessor searches for the file specified. When the preprocessor encounters #include statement, it looks for the file specified in the angled brackets in the default location (Path defined in INCLUDE environment variable of the system). |
|