Copyright © Philip M. Parker, INSEAD. Terms of Use.

C PREPROCESSOR

Specialty Definition: C PREPROCESSOR

DomainDefinition

Computing

C preprocessor (cpp) The standard Unix macro-expansion utility run as the first phase of the C compiler, cc. Cpp interprets lines beginning with "#" such as #define BUFFER_SIZE 256 as a textual assignment giving the symbol BUFFER_SIZE a value "256". Symbols defined with cpp are traditionally given upper case names to distinguish them from C identifiers. This symbol can be used later in the input, as in char input_buffer[BUFFER_SIZE]; This use of cpp to name constants, rather than writing these magic numbers inline, makes a program easier to read and maintain, especially if there is more than one occurrence of BUFFER_SIZE all of which must all have the same value. Cpp macros can have parameters: #define BIT(n) (1<<(n)) This can be used with any appropriate actual argument: msb = BIT(nbits-1); Note the parentheses around the "n" in the definition of BIT. Without these, operator precedence might mean that the expression substituted in in place of n might not be interpreted correctly (though the example above would be OK). Cpp also supports conditional compilation with the use of #ifdef SYMBOL ... #else ... #endif and #if EXPR ... #else ... #endif constructs, where SYMBOL is a Cpp symbol which may or may not be defined and EXPR is an arithmetic expression involving only Cpp symbols, constants and C operators which Cpp can evaluate to a constant at compile time. Decus cpp is a free implementation for VMS. The most widely used C preprocessor today is the GNU CPP, distributed as part of GCC. (2001-12-31). Source: The Free On-line Dictionary of Computing.

Source: compiled by the editor from various references; see credits.

Top     

Crosswords: C PREPROCESSOR

Specialty definitions using "C PREPROCESSOR": @Begincfortran.h, cppDecus cpppreprocessor. (references)

Top     

Anagrams: C PREPROCESSOR

Scrabble® Enable2K-Verified Anagrams

Words within the letters "c-c-e-e-o-o-p-p-r-r-r-s-s"

-1 letter: preprocessor.

-2 letters: corepressor.

-3 letters: preprocess.

-4 letters: oppressor, prescores, processor, proposers, reopposes, repressor, reprocess, sorcerers.

-5 letters: coercers, croppers, opposers, prescore, properer, proposer, proposes, prospers, reoppose, reposers, rescores, scoopers, sorcerer.

Source: compiled by the editor from various references; see credits.

SCRABBLE® is a registered trademark. All intellectual property rights in and to the game are owned in the U.S.A and Canada by Hasbro Inc., and throughout the rest of the world by J.W. Spear & Sons Limited of Maidenhead, Berkshire, England, a subsidiary of Mattel Inc. Mattel and Spear are not affiliated with Hasbro.

Top     

Alternative Orthography: C PREPROCESSOR


Hexadecimal (or equivalents, 770AD-1900s) (references)

43      50 52 45 50 52 4F 43 45 53 53 4F 52

Leonardo da Vinci (1452-1519; backwards) (references)

    

Binary Code (1918-1938, probably earlier) (references)

01000011 00100000 01010000 01010010 01000101 01010000 01010010 01001111 01000011 01000101 01010011 01010011 01001111 01010010

HTML Code (1990) (references)

&#67 &#32 &#80 &#82 &#69 &#80 &#82 &#79 &#67 &#69 &#83 &#83 &#79 &#82

ISO 10646 (1991-1993) (references)

0043      0050 0052 0045 0050 0052 004F 0043 0045 0053 0053 004F 0052

Encryption (beginner's substitution cypher): (references)

372505239505249373953534952

Top     



INDEX

1. Crosswords
2. Anagrams
3. Orthography
4. Bibliography


  

Copyright © Philip M. Parker, INSEAD. Terms of Use.