mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-26 15:13:56 +00:00
This commit is contained in:
parent
5a91556483
commit
fd4522df50
6
c.md
6
c.md
@ -848,8 +848,8 @@ source files and can simplify code and definitions by separating them into
|
|||||||
separate files.
|
separate files.
|
||||||
|
|
||||||
Header files are syntactically similar to C source files but reside in ".h"
|
Header files are syntactically similar to C source files but reside in ".h"
|
||||||
files. They can be included in your C source file by using the precompiler
|
files. They can be included in your C source file by using the preprocessor
|
||||||
command #include "example.h", given that example.h exists in the same directory
|
directive #include "example.h", given that example.h exists in the same directory
|
||||||
as the C file.
|
as the C file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -894,7 +894,7 @@ Node createLinkedList(int *vals, int len);
|
|||||||
/* file. Excessive includes or definitions should also not be contained in */
|
/* file. Excessive includes or definitions should also not be contained in */
|
||||||
/* a header file but instead put into separate headers or a C file. */
|
/* a header file but instead put into separate headers or a C file. */
|
||||||
|
|
||||||
#endif /* End of the if precompiler directive. */
|
#endif /* End of the if preprocessor directive. */
|
||||||
```
|
```
|
||||||
|
|
||||||
## Further Reading
|
## Further Reading
|
||||||
|
Loading…
Reference in New Issue
Block a user