#5239
Some checks are pending
Trigger site build / deploy (push) Waiting to run
CI / lint (push) Waiting to run

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. 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