1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-31 04:32:30 +01:00
This commit is contained in:
ven 2025-01-20 20:41:33 +01:00 committed by GitHub
parent 5a91556483
commit fd4522df50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

6
c.md
View File

@ -848,8 +848,8 @@ source files and can simplify code and definitions by separating them into
separate files.
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
command #include "example.h", given that example.h exists in the same directory
files. They can be included in your C source file by using the preprocessor
directive #include "example.h", given that example.h exists in the same directory
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 */
/* 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