difference between #include <FileName> and #include "FileName" ?
Ask by Prakash nidhi Verma
Updated 23 Sep 2020
Header file:
#include<File name>
- searches for directories in the files which is pre-defined by compiler/ environment.
- This method is normally used to include standard library header files.
#include"Filename"
- searches for the file which is defined by programmer itself.
- this method is normally used to include user defined header files.