A: "# include <stdlib. h>" is used for the standard library file or the header file provided by the system. You can find the header file at the location where the system standard header file is saved.
And "# include" userdefined. H "for user-defined header files, first from the current directory to find whether there is a specified name of the header file, if the current directory does not find this header file, then from the standard file directory to find. These two methods have their essential differences.
The header files included in the C language program can be divided into the system standard header files and custom header files in the user project. The system standard library header files can be included in these two methods, however, we recommend that you use the first method to save time. Only the second method can be used to include custom header files (stored in the project path, otherwise, an error occurs. (You can also place the header files required in the project you have defined under the path of the standard header file, but this is against the regular operation ).