What does #include actually do?

后端 未结 6 1511
广开言路
广开言路 2020-12-15 04:25

In C (or a language based on C), one can happily use this statement:

#include \"hello.h\";

And voila, every function and variable in

6条回答
  •  不思量自难忘°
    2020-12-15 04:28

    This is a nice link to answer this question.

    http://msdn.microsoft.com/en-us/library/36k2cdd4.aspx

    Usually #include and #include "path-name" just differs in the order of the search of the pre processor

提交回复
热议问题