Outline for May 10, 2002
Handouts: none
Reading: Johnsonbaugh and Kalin, pp. 143-148, pp. 177-191
-
Greetings and felicitations!
-
Bit Operations
-
Representation of integers as bit sequences
-
& | ~
-
Contrast with logical operators && || !
-
<< >>
-
bit masking
-
C Preprocessor
-
#define macros with arguments; contrast with functions
-
#include "...", #include <...>
-
#if ... #elif ... #else ... #endif
-
#ifdef ... #elif ... #else ... #endif, #ifndef ... #elif ... #else ... #endif
-
#if 0 and #ifdef undef
-
#undef
-
#error
-
#pragma