Difference between revisions of "Preprocessor"
Jump to navigation
Jump to search
(Create new page for C Preprocessor) |
m (Add link to Henry Precheur article on C preprocessor) |
||
| Line 1: | Line 1: | ||
Notes On C Language Preprocessor | Notes On C Language Preprocessor | ||
| + | |||
| + | An academic approach to C language preprocessor: | ||
* https://home.cs.colorado.edu/~main/cs1300/doc/gnu/cpp_1.html | * https://home.cs.colorado.edu/~main/cs1300/doc/gnu/cpp_1.html | ||
| + | |||
| + | A practical explanation of preprocessor "stringify" macro pair, and macro expansion rules with respect to '#' preprocessor operator. This article posted by one Henry Precheur: | ||
| + | |||
| + | * https://henry.precheur.org/code/STRINGIFY/ | ||
Revision as of 16:31, 14 November 2025
Notes On C Language Preprocessor
An academic approach to C language preprocessor:
A practical explanation of preprocessor "stringify" macro pair, and macro expansion rules with respect to '#' preprocessor operator. This article posted by one Henry Precheur: